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

12 lines
224 B
TypeScript

import React from "react";
import TimelineSection from "./TimelineSection";
interface TimelineProps {
children: typeof TimelineSection;
}
export default function Timeline(props: TimelineProps) {
return <div></div>;
}