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-14 22:34:02 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1f018cfae91823f76563bde96e6babcebd6896b9
1f018cfa
1 parent
c067cbb2
add Msg Components in ChatScreen.js
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
front/src/Components/Main/ChatScreen.js
front/src/Components/Main/ChatScreen.js
View file @
1f018cf
import
React
from
"react"
;
import
styled
from
"styled-components"
;
import
ChatListBox
from
"../SubMenuList/ChatListBox"
;
import
IncomingMsg
from
"./IncomingMsg"
;
import
OutcomingMsg
from
"./OutcomingMsg"
;
const
ChatScreen
=
styled
.
div
``
;
export
default
()
=>
{
return
(
<
ChatScreen
>
<
ChatListBox
/>
<
IncomingMsg
/>
<
OutcomingMsg
/>
<
/ChatScreen
>
);
};
...
...
Please
register
or
login
to post a comment