FEAT: Added Sidebar

SideBar now available with Logo on top
This commit is contained in:
EvanLin3141
2025-02-04 17:55:41 +00:00
parent d472d672bd
commit a421a16955
4 changed files with 40 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
import React from 'react'
import { useState } from "react";
interface GenreListProps {
}
const GenreList: React.FC<GenreListProps> = () => {
const [genres, setGenres] = useState(true)
return (
<div>GenreList</div>
)
}
export default GenreList;