diff --git a/components/Timeline.tsx b/components/Timeline.tsx new file mode 100644 index 0000000..709d0e3 --- /dev/null +++ b/components/Timeline.tsx @@ -0,0 +1,11 @@ +import React from "react"; + +import TimelineSection from "./TimelineSection"; + +interface TimelineProps { + children: typeof TimelineSection; +} + +export default function Timeline(props: TimelineProps) { + return
; +} diff --git a/components/TimelineSection.tsx b/components/TimelineSection.tsx new file mode 100644 index 0000000..5fa1384 --- /dev/null +++ b/components/TimelineSection.tsx @@ -0,0 +1,5 @@ +import React from "react"; + +export default function TimelineSection() { + return
; +}