archive ReactApp

This commit is contained in:
2023-01-28 13:02:29 -06:00
parent c82606319c
commit 87833551a6
74 changed files with 2809 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
import React from "react";
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 " + this.classes}>
{this.items}
</div>;
}
}