14 lines
753 B
JavaScript
14 lines
753 B
JavaScript
const LibraryExtraBar = () =>{
|
|
return(
|
|
<div className="flex-container justify-content-center" id="filterbar" style={{display: "flex" , flex:"1" , flexDirection: "column", gap: "10px", textAlign: "center"}}>
|
|
<div className="flex-item-profile sidebar rounded-4 align-self-center">
|
|
<button className="button" style={{height: "110px", width:"160px", fontSize: "25px", opacity: "0.6"}} disabled="true">REVIEWED</button>
|
|
</div>
|
|
<div className="flex-item-search sidebar rounded-4 align-self-center">
|
|
<button className="button" style={{height: "110px", width:"160px", fontSize: "25px"}}>WATCHED</button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
export default LibraryExtraBar;
|