feat: set up basic app shell components
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
export default function Container({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<div className="p-3 bg-neutral-900 flex-1">
|
||||
{children}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user