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-16 16:33:57 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
740ce2dab0b080ba2461840a49112d40c82ee04a
740ce2da
1 parent
832d7e29
remove duplicated div tag
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
front/src/Routes/Main/MainPresenter.js
front/src/Routes/Main/MainPresenter.js
View file @
740ce2d
import
React
from
"react"
;
import
styled
from
"styled-components"
;
import
Header
from
"../../Components/Header"
;
const
MainWrapper
=
styled
.
div
`
display: flex;
flex-direction: column;
`
;
import
Main
from
"../../Components/Main"
;
export
default
()
=>
{
return
(
<
MainWrapper
>
<>
<
Header
/>
<
/MainWrapper
>
<
Main
/>
<
/
>
);
};
...
...
Please
register
or
login
to post a comment