Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021-1-capstone-design1
/
GCL_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
안형욱
2021-04-13 21:01:58 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
78c7513e39aa8a261aa208b21492af40ffc5651c
78c7513e
1 parent
efc5fb08
feat: 기본 component 추가
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
frontend/src/components/common/Button.js
frontend/src/pages/Home.js
frontend/src/components/common/Button.js
0 → 100644
View file @
78c7513
import
React
from
'react'
;
const
Button
=
()
=>
{
return
<
div
>
Button
<
/div>;
};
export
default
Button
;
frontend/src/pages/Home.js
0 → 100644
View file @
78c7513
import
React
from
'react'
;
const
Home
=
()
=>
{
return
<
div
>
Home
<
/div>;
};
export
default
Home
;
Please
register
or
login
to post a comment