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-23 05:43:44 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cc6fe0325bffd4882175caeeb58ccc4a30630f9f
cc6fe032
1 parent
dab65464
create CategoryContainer.js
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
front/src/Routes/Category/CategoryContainer.js
front/src/Routes/Category/CategoryContainer.js
0 → 100644
View file @
cc6fe03
import
React
from
"react"
;
import
CategoryPresenter
from
"./CategoryPresenter"
;
import
{
withRouter
}
from
"react-router-dom"
;
export
default
withRouter
(({
location
})
=>
{
return
<
CategoryPresenter
location
=
{
location
}
/>
;
});
Please
register
or
login
to post a comment