Toggle navigation
Toggle navigation
This project
Loading...
Sign in
송용우
/
oss-Jaksimsamil
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
송용우
2020-08-18 15:58:39 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ae7462c5050dd8d149f12806c789c789c87fcf65
ae7462c5
1 parent
885e9649
Update Challege Category
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
0 deletions
jaksimsamil-page/src/App.js
jaksimsamil-page/src/components/challenge/ChallengeForm.js
jaksimsamil-page/src/components/common/Categories.js
jaksimsamil-page/src/containers/challenge/ChallengeContatiner.js
jaksimsamil-page/src/pages/ChallengePage.js
jaksimsamil-page/src/App.js
View file @
ae7462c
...
...
@@ -5,6 +5,7 @@ import LoginPage from './pages/LoginPage';
import
RegisterPage
from
'./pages/RegisterPage'
;
import
HomePage
from
'./pages/HomePage'
;
import
SettingPage
from
'./pages/SettingPage'
;
import
ChallengePage
from
'./pages/ChallengePage'
;
function
App
()
{
return
(
...
...
@@ -13,6 +14,7 @@ function App() {
<
Route
component
=
{
LoginPage
}
path
=
"/login"
/>
<
Route
component
=
{
RegisterPage
}
path
=
"/register"
/>
<
Route
component
=
{
SettingPage
}
path
=
"/setting"
/>
<
Route
component
=
{
ChallengePage
}
path
=
"/challenge"
/>
<
/
>
);
}
...
...
jaksimsamil-page/src/components/challenge/ChallengeForm.js
0 → 100644
View file @
ae7462c
File mode changed
jaksimsamil-page/src/components/common/Categories.js
View file @
ae7462c
...
...
@@ -8,6 +8,10 @@ const categories = [
text
:
'홈'
,
},
{
name
:
'challenge'
,
text
:
'챌린지'
,
},
{
name
:
'setting'
,
text
:
'설정'
,
},
...
...
jaksimsamil-page/src/containers/challenge/ChallengeContatiner.js
0 → 100644
View file @
ae7462c
File mode changed
jaksimsamil-page/src/pages/ChallengePage.js
0 → 100644
View file @
ae7462c
import
React
from
'react'
;
import
HeaderContainer
from
'../containers/common/HeaderContainer'
;
const
ChallengePage
=
()
=>
{
return
(
<
div
>
<
HeaderContainer
/>
<
/div
>
);
};
export
default
ChallengePage
;
Please
register
or
login
to post a comment