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-22 15:48:35 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
79a85d15b7ed13aaa3c4103851f7762441d64ffb
79a85d15
1 parent
d865609f
remove unnecessary file
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
26 deletions
front/src/Components/Home.js
front/src/Components/Home.js
deleted
100644 → 0
View file @
d865609
import
React
from
"react"
;
import
styled
from
"styled-components"
;
import
Menu
from
"../Routes/Menu/MenuContainer"
;
import
HomeMain
from
"./Home/HomeMain"
;
import
{
Helmet
}
from
"react-helmet"
;
const
HomeContainer
=
styled
.
div
`
width: 100%;
display: flex;
flex-direction: row;
overflow: hidden;
`
;
export
default
()
=>
{
return
(
<>
<
Helmet
>
<
title
>
Home
<
/title
>
<
/Helmet
>
<
HomeContainer
>
<
Menu
/>
<
HomeMain
/>
<
/HomeContainer
>
<
/
>
);
};
Please
register
or
login
to post a comment