Skip to content

Commit

Permalink
feat: impl when2meet componenet
Browse files Browse the repository at this point in the history
  • Loading branch information
sparcscasio committed Jan 19, 2025
1 parent 7588690 commit 7b7db89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import ko from '@/translations/translation.ko.json';

import 'slick-carousel/slick/slick.css';
import 'slick-carousel/slick/slick-theme.css';
import ExamplePage from './pages/ExamplePage';
import When2MeetPage from './pages/When2MeetPage';

Check warning on line 38 in src/index.tsx

View check run for this annotation

Codecov / codecov/patch

src/index.tsx#L38

Added line #L38 was not covered by tests

declare global {
interface Window {
Expand Down Expand Up @@ -145,7 +145,7 @@ const router = createBrowserRouter([
},
{ path: 'timetable', element: <TimetablePage /> },

{ path: 'example', element: <ExamplePage /> },
{ path: 'w2m', element: <When2MeetPage /> },
{ path: 'timetable/syllabus', element: <SyllabusPage /> },
{ path: 'write-reviews', element: <WriteReviewsPage /> },
{ path: 'planner', element: <PlannerPage /> },
Expand Down
4 changes: 2 additions & 2 deletions src/pages/ExamplePage.tsx → src/pages/When2MeetPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const TimeWrapper = styled.div`
line-height: 11px;
`;

const ExamplePage: React.FC<GridProps> = ({
const When2MeetPage: React.FC<GridProps> = ({
startDate = new Date('2025-01-20'),
endDate = new Date('2025-01-24'),
startTime = 8,
Expand Down Expand Up @@ -153,4 +153,4 @@ const ExamplePage: React.FC<GridProps> = ({
);
};

export default ExamplePage;
export default When2MeetPage;

0 comments on commit 7b7db89

Please sign in to comment.