cs-2022-class-profile/components/Timeline.tsx

12 lines
224 B
TypeScript
Raw Normal View History

2022-07-27 20:43:23 -04:00
import React from "react";
import TimelineSection from "./TimelineSection";
interface TimelineProps {
children: typeof TimelineSection;
}
export default function Timeline(props: TimelineProps) {
return <div></div>;
}