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-27 22:28:17 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e800ee09c1b672d5c3e2d818464b64b229060073
e800ee09
1 parent
5ecb800b
add useState
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
front/src/Routes/Room/RoomContainer.js
front/src/Routes/Room/RoomContainer.js
View file @
e800ee0
import
React
from
"react"
;
import
React
,
{
useState
}
from
"react"
;
import
{
useQuery
}
from
"@apollo/react-hooks"
;
import
{
withRouter
}
from
"react-router-dom"
;
import
RoomPresenter
from
"./RoomPresenter"
;
import
{
GET_ROOMS
}
from
"./RoomQueries"
;
export
default
withRouter
(()
=>
{
const
[
action
,
setAction
]
=
useState
(
"showList"
);
const
{
data
}
=
useQuery
(
GET_ROOMS
);
let
roomArray
;
if
(
data
!==
undefined
)
{
const
{
getRooms
}
=
data
;
roomArray
=
getRooms
;
}
return
<
RoomPresenter
roomArray
=
{
roomArray
}
/>
;
return
<
RoomPresenter
roomArray
=
{
roomArray
}
action
=
{
action
}
/>
;
});
...
...
Please
register
or
login
to post a comment