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-04-24 00:59:19 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a2bd2cdeefd5892c77256e543b0a2c9f740d5c30
a2bd2cde
1 parent
410d4728
create Article.js
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
front/src/Components/Article.js
front/src/Components/Article.js
0 → 100644
View file @
a2bd2cd
import
React
from
"react"
;
import
Styled
from
"styled-components"
;
const
Article
=
Styled
.
div
`
width: 70%;
justify-content: center;
align-items: center;
text-align: center;
margin-top: 10px;
border-top: 1px solid black;
`
;
export
default
()
=>
{
return
(
<
Article
>
<
h1
>
Article
Title
<
/h1
>
<
/Article
>
);
};
Please
register
or
login
to post a comment