mirror of https://github.com/Lapikud/tipilan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
374 B
14 lines
374 B
import SidebarLayoutServer from "./SidebarLayoutServer"; |
|
|
|
const SidebarParent = () => { |
|
return ( |
|
<div className="fixed w-screen top-0 z-9999"> |
|
<SidebarLayoutServer /> |
|
</div> |
|
); |
|
}; |
|
|
|
// This component is responsible for rendering the sidebar and header together. |
|
// Server-side translations are handled by SidebarLayoutServer. |
|
|
|
export default SidebarParent;
|
|
|