어드민 메뉴 관리 기능 추가

This commit is contained in:
2026-01-12 11:00:11 +09:00
parent 90bbb0dd50
commit 9d31cbbd10
4 changed files with 433 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ import React from 'react'
const Dashboard = React.lazy(() => import('src/views/dashboard/Dashboard'))
const Colors = React.lazy(() => import('src/views/theme/colors/Colors'))
const Typography = React.lazy(() => import('src/views/theme/typography/Typography'))
const AdminMenuManagement = React.lazy(() => import('src/views/admin/AdminMenuManagement'))
const routes = [
{ path: '/', exact: true, name: 'Home' },
@@ -10,6 +11,7 @@ const routes = [
{ path: '/theme', name: 'Theme', element: Colors, exact: true },
{ path: '/theme/colors', name: 'Colors', element: Colors },
{ path: '/theme/typography', name: 'Typography', element: Typography },
{ path: '/admin/menu', name: 'Admin Menu Management', element: AdminMenuManagement },
]
export default routes