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-20 01:15:35 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ed6e8d677999a2ab86813e854a4ee54d604db3ed
ed6e8d67
1 parent
f9e5d1bf
update props
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
front/src/Routes/Menu/MenuContainer.js
front/src/Routes/Menu/MenuContainer.js
View file @
ed6e8d6
...
...
@@ -10,7 +10,7 @@ const LOG_OUT = gql`
}
`
;
export
default
withRouter
(({
match
,
location
,
history
})
=>
{
export
default
withRouter
(({
match
,
location
,
history
,
chName
})
=>
{
const
[
logOut
]
=
useMutation
(
LOG_OUT
);
return
(
<
MenuPresenter
...
...
@@ -18,6 +18,7 @@ export default withRouter(({ match, location, history }) => {
match
=
{
match
}
location
=
{
location
}
history
=
{
history
}
chName
=
{
chName
}
/
>
);
});
...
...
Please
register
or
login
to post a comment