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-05-16 17:45:30 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b5ea2465c138c688a49e9ac8409506674078a9bc
b5ea2465
1 parent
be66d96d
update Router.js
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
front/src/Routes/Router.js
front/src/Routes/Router.js
View file @
b5ea246
...
...
@@ -2,11 +2,11 @@ import React from "react";
import
PropTypes
from
"prop-types"
;
import
{
BrowserRouter
as
Router
,
Route
,
Switch
}
from
"react-router-dom"
;
import
Auth
from
"./Auth/AuthContainer"
;
import
Home
from
"./Home"
;
import
Home
from
".
./Components
/Home"
;
const
LoggedInRoutes
=
()
=>
(
<>
<
Route
exact
path
=
"/"
component
=
{
Home
}
/
>
<
Route
exact
path
=
"/
Home
"
component
=
{
Home
}
/
>
<
/
>
);
...
...
Please
register
or
login
to post a comment