Construct timeline

This commit is contained in:
2023-01-01 19:23:51 -05:00
parent e0bae8ce1e
commit 97a62ddb65
5 changed files with 95 additions and 13 deletions

16
src/componets/Timeline.js Normal file
View File

@@ -0,0 +1,16 @@
import React from "react";
export default class Timeline extends React.Component {
constructor(props) {
super(props);
this.items = props.children;
}
componentDidMount() {}
render() {
return <div className="timeline">
{this.items}
</div>;
}
}