FEAT: Added Sidebar
SideBar now available with Logo on top
This commit is contained in:
18
frontend/src/components/aside/GenreList.tsx
Normal file
18
frontend/src/components/aside/GenreList.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user