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