18 lines
384 B
TypeScript
18 lines
384 B
TypeScript
|
|
import {Link} from "react-router-dom";
|
||
|
|
|
||
|
|
export default function Sidebar() {
|
||
|
|
return (
|
||
|
|
<div className="w-[220px] h-screen border-r bg-white p-4">
|
||
|
|
<h2 className="text-lg font-semibold mb-6">Admin</h2>
|
||
|
|
|
||
|
|
<div className="space-y-3">
|
||
|
|
<Link to="/dashboard">Dashboard</Link>
|
||
|
|
|
||
|
|
<Link to="/blog">Blog</Link>
|
||
|
|
|
||
|
|
<Link to="/department">Department</Link>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|