This is not the final visuals for the dates tab, but an in-progress page to base further work on. AA-116
13 lines
201 B
JavaScript
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 />
|
|
</>
|
|
);
|
|
}
|