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-17 17:47:55 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
026a8228af82867e01c7715c123c2f074c1c673c
026a8228
1 parent
762cc935
create OTOChat files
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
0 deletions
front/src/Routes/OTOChat/OTOChatContainer.js
front/src/Routes/OTOChat/OTOChatPresenter.js
front/src/Routes/OTOChat/OTOChatQueries.js
front/src/Routes/OTOChat/OTOChatContainer.js
View file @
026a822
import
React
from
"react"
;
import
OTOChatPresenter
from
"./OTOChatPresenter"
;
export
default
()
=>
{
return
<
OTOChatPresenter
/>
;
};
...
...
front/src/Routes/OTOChat/OTOChatPresenter.js
View file @
026a822
import
React
from
"react"
;
import
styled
from
"styled-components"
;
import
Menu
from
"../Menu/MenuContainer"
;
import
FriendsList
from
"../../Components/FriendsList/FriendsList"
;
import
ChatScreen
from
"../../Components/ChatMain/MainScreen"
;
const
Wrapper
=
styled
.
div
`
width: 100%;
display: flex;
flex-direction: row;
overflow: hidden;
`
;
export
default
()
=>
{
return
(
<
Wrapper
>
<
Menu
/>
<
FriendsList
/>
<
ChatScreen
/>
<
/Wrapper
>
);
};
...
...
front/src/Routes/OTOChat/OTOChatQueries.js
0 → 100644
View file @
026a822
File mode changed
Please
register
or
login
to post a comment