Skip to content

Commit

Permalink
Merge pull request #12 from shristigupta12/feat/dashboard-ui
Browse files Browse the repository at this point in the history
Dashboard UI implementation
  • Loading branch information
yashsehgal committed Oct 3, 2023
2 parents 40eab36 + 87c6cf6 commit 41e302b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/dashboard/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import StatusAlert from "@/components/ui/status-alert";

const Dashboard: React.FunctionComponent = () =>{
return(
<div className="dashboard m-12">
<StatusAlert />
</div>
)
}
export default Dashboard;

0 comments on commit 41e302b

Please sign in to comment.