Files
FBSAdminTool/src/containers/_nav.js

51 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-07-12 09:41:26 +05:30
import React from 'react'
import CIcon from '@coreui/icons-react'
const _nav = [{
_tag: 'CSidebarNavItem',
2021-07-12 14:49:27 +05:30
name: 'ダッシュボード',
2021-07-12 09:41:26 +05:30
to: '/dashboard',
icon: < CIcon name = "cil-speedometer"
customClasses = "c-sidebar-nav-icon" / >
},
{
_tag: 'CSidebarNavTitle',
2021-07-12 14:49:27 +05:30
_children: ['レポート']
2021-07-12 09:41:26 +05:30
},
{
_tag: 'CSidebarNavItem',
2021-07-12 14:49:27 +05:30
name: '報告書',
2021-07-12 09:54:25 +05:30
to: '/reports',
2021-07-12 09:41:26 +05:30
icon: 'cil-drop',
},
2021-07-20 22:11:32 +05:30
{
_tag: 'CSidebarNavItem',
name: 'アップロード',
to: '/uploader',
icon: 'cil-drop',
},
2021-07-12 09:41:26 +05:30
// {
// _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