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-06 00:17:31 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6f1ace2c7b61598cd4299fb2a7673d4b73f8443f
6f1ace2c
1 parent
392a3dc5
update App.js
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
9 deletions
front/src/Components/App.js
front/src/Components/App.js
View file @
6f1ace2
import
React
from
"react"
;
import
GlobalStyles
from
"../Styles/GlobalStyles"
;
import
Header
from
"./Header"
;
import
Image
from
"./Image"
;
import
Grid
from
"./Grid"
;
import
{
ThemeProvider
}
from
"styled-components"
;
import
Theme
from
"../Styles/Theme"
;
import
MenuBar
from
"./MenuList/MenuBar"
;
import
SubMenuBar
from
"./SubMenuList/SubMenuBar"
;
import
MainScreen
from
"./Main/MainScreen"
;
export
default
()
=>
{
return
(
<>
<
GlobalStyles
/>
<
Header
/>
<
Image
/>
<
Grid
/>
<
/
>
<
ThemeProvider
theme
=
{
Theme
}
>
<>
<
GlobalStyles
/>
<
MenuBar
/>
<
SubMenuBar
/>
<
MainScreen
/>
<
/
>
<
/ThemeProvider
>
);
};
...
...
Please
register
or
login
to post a comment