implement checkbox filtering + timeline animations

This commit is contained in:
2023-01-08 15:20:21 -06:00
parent 894a2e4053
commit c07ea50491
7 changed files with 108 additions and 29 deletions

View File

@@ -4,12 +4,13 @@ export default class Timeline extends React.Component {
constructor(props) {
super(props);
this.items = props.children;
this.classes = props.classes;
}
componentDidMount() {}
render() {
return <div className="timeline">
return <div className={"timeline " + this.classes}>
{this.items}
</div>;
}