mirror of
https://github.com/fergalmoran/xtreamium.git
synced 2026-01-06 17:06:38 +00:00
13 lines
312 B
TypeScript
13 lines
312 B
TypeScript
import React from "react";
|
|
import SidebarContent from "./sidebar-content.component";
|
|
|
|
const DesktopSidebar = () => {
|
|
return (
|
|
<aside className="z-30 flex-shrink-0 hidden w-64 overflow-y-auto bg-white dark:bg-gray-800 lg:block">
|
|
<SidebarContent />
|
|
</aside>
|
|
);
|
|
};
|
|
|
|
export default DesktopSidebar;
|