51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
import React from 'react'
|
|
import CIcon from '@coreui/icons-react'
|
|
|
|
const _nav = [{
|
|
_tag: 'CSidebarNavItem',
|
|
name: 'ダッシュボード',
|
|
to: '/dashboard',
|
|
icon: < CIcon name = "cil-speedometer"
|
|
customClasses = "c-sidebar-nav-icon" / >
|
|
},
|
|
{
|
|
_tag: 'CSidebarNavTitle',
|
|
_children: ['レポート']
|
|
},
|
|
{
|
|
_tag: 'CSidebarNavItem',
|
|
name: '報告書',
|
|
to: '/reports',
|
|
icon: 'cil-drop',
|
|
},
|
|
{
|
|
_tag: 'CSidebarNavItem',
|
|
name: 'アップロード',
|
|
to: '/uploader',
|
|
icon: 'cil-drop',
|
|
},
|
|
// {
|
|
// _tag: 'CSidebarNavTitle',
|
|
// _children: ['Components']
|
|
// },
|
|
// {
|
|
// _tag: 'CSidebarNavDropdown',
|
|
// name: 'Base',
|
|
// route: '/base',
|
|
// icon: 'cil-puzzle',
|
|
// _children: [
|
|
// {
|
|
// _tag: 'CSidebarNavItem',
|
|
// name: 'Breadcrumb',
|
|
// to: '/base/breadcrumbs',
|
|
// },
|
|
// {
|
|
// _tag: 'CSidebarNavItem',
|
|
// name: 'Tooltips',
|
|
// to: '/base/tooltips',
|
|
// },
|
|
// ],
|
|
// }
|
|
]
|
|
|
|
export default _nav |