Update SidepanelChat imports and add SidepanelSettingsHeader route

This commit is contained in:
n4ze3m
2024-02-02 00:13:10 +05:30
parent ca84cc3b64
commit 23e488770d
9 changed files with 37 additions and 30 deletions

View File

@@ -0,0 +1,11 @@
import { SidepanelSettingsHeader } from "~components/Sidepanel/Settings/header"
export const SidepanelSettings = () => {
return (
<div className="flex bg-white dark:bg-black flex-col min-h-screen mx-auto max-w-7xl">
<div className="sticky top-0 z-10">
<SidepanelSettingsHeader />
</div>
</div>
)
}