mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
implement checkbox filtering + timeline animations
This commit is contained in:
@@ -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>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user