Skip to content
Snippets Groups Projects
index.tsx 360 B
Newer Older
import React from "react";

interface TimelineProps {
	initSideBar: () => void;
	revertSideBar: () => void;
}

class Timeline extends React.Component<TimelineProps, {}> {

  componentDidMount() {;
		this.props.initSideBar();
  }

  componentWillUnmount() {
    this.props.revertSideBar();
  }

  render() {
		
    return <></>;
  }
}

export default Timeline;