blob: dc05ff09dabe92c96b9069283adf1e004207da4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import React from 'react';
import { Row, Col } from 'reactstrap';
import { TimelineInfo } from '../data/timeline';
import TimelineBoard from './TimelineBoard';
interface TimelineBoardAreaWithoutUserProps {
publicTimelines?: TimelineInfo[];
}
const TimelineBoardAreaWithoutUser: React.FC<TimelineBoardAreaWithoutUserProps> = (
props
) => {
const { publicTimelines } = props;
return (
<Row className="my-2 justify-content-center">
<Col sm="8" lg="6">
<TimelineBoard timelines={publicTimelines} />
</Col>
</Row>
);
};
export default TimelineBoardAreaWithoutUser;
|