mediahub-fe/components/partials/sidebar/index.tsx

21 lines
304 B
TypeScript
Raw Normal View History

2024-11-26 03:09:48 +00:00
import React from 'react'
import SidebarContent from './sidebar-content'
import Logo from '@/components/logo'
import { Menu } from './menu'
const DashCodeSidebar = () => {
return (
<SidebarContent>
<Menu />
</SidebarContent>
)
}
export default DashCodeSidebar