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:16 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
be66d96d7430372ded7e3510542738e65d169675
be66d96d
1 parent
ac67f7c1
move Home.js to components
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
front/src/Routes/Home.js → front/src/Components/Home.js
front/src/
Route
s/Home.js
→
front/src/
Component
s/Home.js
View file @
be66d96
import
React
from
"react"
;
import
styled
from
"styled-components"
;
import
MenuBar
from
"../Components/MenuList/MenuBar"
;
import
HomeMain
from
"../Components/Home/HomeMain"
;
import
MenuBar
from
"../Routes/MenuList/MenuBar"
;
import
HomeMain
from
"./Home/HomeMain"
;
import
{
Helmet
}
from
"react-helmet"
;
const
HomeContainer
=
styled
.
div
`
width: 100%;
...
...
@@ -13,6 +14,9 @@ const HomeContainer = styled.div`
export
default
()
=>
{
return
(
<>
<
Helmet
>
<
title
>
Home
<
/title
>
<
/Helmet
>
<
HomeContainer
>
<
MenuBar
/>
<
HomeMain
/>
...
...
Please
register
or
login
to post a comment