Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-CloudComputing-E
/
E_Team_KhuBox
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Woojin Lee
2020-05-03 21:16:53 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
16fa916d2c1bf0d6e492cc0144bad72853e840e4
16fa916d
1 parent
b6c50e2b
Set routes
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
15 deletions
khubox-front/src/Routes.js
khubox-front/src/layouts/Main/components/Sidebar/Sidebar.js
khubox-front/src/Routes.js
View file @
16fa916
...
...
@@ -23,37 +23,31 @@ const Routes = () => {
<
Redirect
exact
from
=
"/"
to
=
"/
dashboard
"
to
=
"/
my-drive
"
/>
<
RouteWithLayout
component
=
{
DashboardView
}
exact
layout
=
{
MainLayout
}
path
=
"/
dashboard
"
path
=
"/
my-drive
"
/>
<
RouteWithLayout
component
=
{
UserListView
}
exact
layout
=
{
MainLayout
}
path
=
"/
users
"
path
=
"/
share
"
/>
<
RouteWithLayout
component
=
{
ProductListView
}
exact
layout
=
{
MainLayout
}
path
=
"/
products
"
path
=
"/
recent
"
/>
<
RouteWithLayout
component
=
{
TypographyView
}
exact
layout
=
{
MainLayout
}
path
=
"/typography"
/>
<
RouteWithLayout
component
=
{
IconsView
}
exact
layout
=
{
MainLayout
}
path
=
"/icons"
path
=
"/trash"
/>
<
RouteWithLayout
component
=
{
AccountView
}
...
...
khubox-front/src/layouts/Main/components/Sidebar/Sidebar.js
View file @
16fa916
...
...
@@ -45,22 +45,22 @@ const Sidebar = props => {
const
pages
=
[
{
title
:
'내 드라이브'
,
href
:
'/
dashboard
'
,
href
:
'/
my-drive
'
,
icon
:
<
DashboardIcon
/>
},
{
title
:
'공유함'
,
href
:
'/
users
'
,
href
:
'/
share
'
,
icon
:
<
PeopleIcon
/>
},
{
title
:
'최근 열어본 파일'
,
href
:
'/
products
'
,
href
:
'/
recent
'
,
icon
:
<
ShoppingBasketIcon
/>
},
{
title
:
'휴지통'
,
href
:
'/
sign-in
'
,
href
:
'/
trash
'
,
icon
:
<
LockOpenIcon
/>
},
{
...
...
Please
register
or
login
to post a comment