mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
18 lines
331 B
JavaScript
18 lines
331 B
JavaScript
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>;
|
|
}
|
|
}
|