Files
frontend-app-learning/src/dates-tab/DatesTab.jsx
Michael Terry 7487d8d32f Add basic dates tab (#62)
This is not the final visuals for the dates tab, but an in-progress
page to base further work on.

AA-116
2020-05-26 13:07:24 -04:00

13 lines
201 B
JavaScript

import React from 'react';
import Timeline from './Timeline';
export default function DatesTab() {
return (
<>
<h2 className="mb-4">Important Dates</h2>
<Timeline />
</>
);
}