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-20 00:12:24 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
185876c8007c811d70ed4f15c3302a8e4a7c8cb0
185876c8
1 parent
7376875c
add features route
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
front/src/Routes/Router.js
front/src/Routes/Router.js
View file @
185876c
...
...
@@ -6,6 +6,7 @@ import About from "./About";
import
RoomList
from
"./Room/RoomContainer"
;
import
Main
from
"./MainPresenter"
;
import
Forum
from
"./Forum/ForumPresenter"
;
import
Features
from
"./Features"
;
const
LoggedInRoutes
=
()
=>
(
<
Switch
>
...
...
@@ -19,7 +20,7 @@ const LoggedOutRoutes = () => (
<
Route
path
=
"/about"
component
=
{
About
}
/
>
<
Route
path
=
"/auth"
component
=
{
Auth
}
/
>
<
Route
path
=
"/forum"
component
=
{
Forum
}
/
>
<
Route
path
=
"/features"
component
=
{
Main
}
/
>
<
Route
path
=
"/features"
component
=
{
Features
}
/
>
<
Route
path
=
"/support"
component
=
{
Main
}
/
>
<
/Switch
>
);
...
...
Please
register
or
login
to post a comment