Skip to content

Commit

Permalink
feat(time): add TimeTablePage component (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
SWARVY committed Aug 8, 2024
1 parent 4e9c9fe commit 3b1bc2a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions apps/time/src/app/timetable/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import PageLayout from '@/app/PageLayout';
import { TimeTableLayout } from '@/widgets/time-table';

export default function TimeTablePage() {
return (
<PageLayout nav footer className="w-full space-y-4">
<TimeTableLayout />
</PageLayout>
);
}

0 comments on commit 3b1bc2a

Please sign in to comment.