Initial component
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jared He 2022-07-27 20:43:23 -04:00
parent 5ce2efdc31
commit 02846d9459
2 changed files with 16 additions and 0 deletions

11
components/Timeline.tsx Normal file
View File

@ -0,0 +1,11 @@
import React from "react";
import TimelineSection from "./TimelineSection";
interface TimelineProps {
children: typeof TimelineSection;
}
export default function Timeline(props: TimelineProps) {
return <div></div>;
}

View File

@ -0,0 +1,5 @@
import React from "react";
export default function TimelineSection() {
return <div></div>;
}