Skip to content
This repository has been archived by the owner on Feb 12, 2025. It is now read-only.

Commit

Permalink
chore: add pagelayout to homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
ZickZenni committed Sep 13, 2024
1 parent e68bfcc commit 0fa3063
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/renderer/pages/HomePage/HomePage.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
import PageLayout from '@/components/page/PageLayout';

export default function HomePage() {
return <div>home page</div>;
return (
<PageLayout>
<div>
<p>Home</p>
</div>
</PageLayout>
);
}

0 comments on commit 0fa3063

Please sign in to comment.