You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
609 B
24 lines
609 B
3 years ago
|
import React from "react";
|
||
|
import SearchBox from "../SearchBox";
|
||
|
import TitleSubtitle from "../TitleSubtitle";
|
||
|
|
||
|
import Timeline from "./Timeline.js";
|
||
|
|
||
|
import search from "./gray-search-icon.svg";
|
||
|
|
||
3 years ago
|
const TimeLineComponent = ({ data }) => {
|
||
3 years ago
|
return (
|
||
3 years ago
|
<div className="px-10 py-4 mx-auto bg-white">
|
||
|
<div className="flex flex-row items-start justify-between">
|
||
3 years ago
|
<TitleSubtitle />
|
||
3 years ago
|
<div className="flex-1">
|
||
|
<Timeline />
|
||
|
</div>
|
||
3 years ago
|
<SearchBox inputWidth={"100%"} searchIcon={search} borderClr="#ddd" />
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
3 years ago
|
export default TimeLineComponent;
|