Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
Triz_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
sdy
2020-07-25 17:24:33 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8d93a4509fc7c19cf2e4828925b987afe2d58475
8d93a450
1 parent
6c6390a0
remove support route, change roomlist route
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
front/src/Routes/Router.js
front/src/Routes/Router.js
View file @
8d93a45
...
...
@@ -11,7 +11,7 @@ import News from "./News";
const
LoggedInRoutes
=
()
=>
(
<
Switch
>
<
Route
path
=
"/room
-
list"
component
=
{
RoomList
}
/
>
<
Route
path
=
"/roomlist"
component
=
{
RoomList
}
/
>
<
/Switch
>
);
...
...
@@ -23,7 +23,6 @@ const LoggedOutRoutes = () => (
<
Route
path
=
"/forum"
component
=
{
Forum
}
/
>
<
Route
path
=
"/features"
component
=
{
Features
}
/
>
<
Route
path
=
"/news"
component
=
{
News
}
/
>
<
Route
path
=
"/support"
component
=
{
Main
}
/
>
<
/Switch
>
);
...
...
Please
register
or
login
to post a comment