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.
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
import BreadCrumb from "../BreadCrumb";
|
|
|
|
import SearchBox from "../SearchBox";
|
|
|
|
import TitleSubtitle from "../TitleSubtitle";
|
|
|
|
import CardHolder from "../CardHolder";
|
|
|
|
|
|
|
|
import graySearchIcon from "./images/gray-search-icon.svg";
|
|
|
|
import Playlist from "../Playlist";
|
|
|
|
|
|
|
|
const FileManager = () => {
|
|
|
|
return (
|
|
|
|
<div style={{ backgroundColor: "#FBFBFB" }} className="flex flex-row">
|
|
|
|
{/* ? right Section */}
|
|
|
|
<div className="flex-1 ">
|
|
|
|
<div className="px-7 py-5">
|
|
|
|
{/* ? breadCrumb */}
|
|
|
|
<div className="mb-5">
|
|
|
|
<BreadCrumb />
|
|
|
|
</div>
|
|
|
|
{/* ? pageTitle & searchbox */}
|
|
|
|
<div className="flex flex-row justify-between">
|
|
|
|
{/* ? pageTitle */}
|
|
|
|
<TitleSubtitle />
|
|
|
|
{/* ? searchbox */}
|
|
|
|
<div className="self-end">
|
|
|
|
<SearchBox
|
|
|
|
borderClr={"#EEEEEE"}
|
|
|
|
backgroundColor={"#fff"}
|
|
|
|
inputWidth={"100%"}
|
|
|
|
placeHolderColor={"placeholder-gray-300"}
|
|
|
|
searchIcon={graySearchIcon}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/* cardHolder */}
|
|
|
|
<Playlist />
|
|
|
|
</div>
|
|
|
|
<div className="bg-white">
|
|
|
|
{/* ? pageTitle */}
|
|
|
|
<TitleSubtitle />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{/* left Section */}
|
|
|
|
<CardHolder />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default FileManager;
|