Add app sidebar

This commit is contained in:
2026-05-05 22:32:49 +02:00
parent 663c1137dd
commit c8ec394774
13 changed files with 190 additions and 144 deletions
+15
View File
@@ -0,0 +1,15 @@
interface TopBarProps {
title: string;
button?: React.ReactNode;
}
const TopBar = ({ title, button }: TopBarProps) => {
return (
<div className="flex items-center justify-between my-4">
<h1 className="text-2xl font-semibold">{title}</h1>
{button}
</div>
);
};
export default TopBar;