summaryrefslogtreecommitdiff
path: root/src/components/Schedule.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Schedule.tsx')
-rw-r--r--src/components/Schedule.tsx40
1 files changed, 3 insertions, 37 deletions
diff --git a/src/components/Schedule.tsx b/src/components/Schedule.tsx
index 73548bc..64e4d1a 100644
--- a/src/components/Schedule.tsx
+++ b/src/components/Schedule.tsx
@@ -1,42 +1,8 @@
-import { Paper, Typography } from '@mui/material';
-import {
- Timeline,
- TimelineConnector,
- TimelineContent,
- TimelineDot,
- TimelineItem,
- TimelineOppositeContent,
- TimelineSeparator
-} from '@mui/lab';
-
function Schedule() {
return (
- <Paper>
- <Typography variant="h6">
- Location and attire
- </Typography>
- <Timeline>
- <TimelineItem>
- <TimelineOppositeContent>
- 4:00 pm
- </TimelineOppositeContent>
- <TimelineSeparator>
- <TimelineDot />
- <TimelineConnector />
- </TimelineSeparator>
- <TimelineContent>Ceremony</TimelineContent>
- </TimelineItem>
- <TimelineItem>
- <TimelineOppositeContent>
- 5:00 pm
- </TimelineOppositeContent>
- <TimelineSeparator>
- <TimelineDot />
- </TimelineSeparator>
- <TimelineContent>Reception</TimelineContent>
- </TimelineItem>
- </Timeline>
- </Paper>
+ <>
+ <p>Location and attire</p>
+ </>
);
}