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.
33 lines
876 B
33 lines
876 B
// it has style inside index.scss ---> // Start TimeLineComponent && end TimeLineComponent |
|
|
|
import React from "react"; |
|
|
|
import SearchBox from "../SearchBox"; |
|
import TitleSubtitle from "../TitleSubtitle"; |
|
|
|
import Timeline from "./Timeline.js"; |
|
|
|
import search from "./gray-search-icon.svg"; |
|
import SelectYear from "../SelectYear"; |
|
|
|
const TimeLineComponent = ({ data }) => { |
|
return ( |
|
<div className="px-10 py-4 mx-auto bg-white"> |
|
<div className="flex flex-row items-start justify-between"> |
|
<div> |
|
<TitleSubtitle subTitle={false} /> |
|
<SelectYear /> |
|
</div> |
|
<div className="flex-1"> |
|
<Timeline /> |
|
</div> |
|
<SearchBox |
|
searchIcon={search} |
|
className={"border-[#ddd] focus:border-gray-200 focus:ring-gray-200"} |
|
/> |
|
</div> |
|
</div> |
|
); |
|
}; |
|
|
|
export default TimeLineComponent;
|
|
|