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-18 11:53:47 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b7067e29f1362de1e85f21b59d54ede9556b5fad
b7067e29
1 parent
24d61315
remove unnecessary files
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
91 deletions
front/src/Components/ChatMain/ChatFooter.js
front/src/Components/ChatMain/ChatHeader.js
front/src/Components/ChatMain/ChatScreen.js
front/src/Components/ChatMain/MainScreen.js
front/src/Components/ChatMain/ChatFooter.js
deleted
100644 → 0
View file @
24d6131
import
React
from
"react"
;
import
styled
from
"styled-components"
;
const
ChatFooter
=
styled
.
div
`
display: flex;
`
;
export
default
()
=>
{
return
<
ChatFooter
><
/ChatFooter>
;
};
front/src/Components/ChatMain/ChatHeader.js
deleted
100644 → 0
View file @
24d6131
import
React
from
"react"
;
import
styled
from
"styled-components"
;
import
{
FontAwesomeIcon
}
from
"@fortawesome/react-fontawesome"
;
import
{
faPhone
,
faEllipsisH
}
from
"@fortawesome/free-solid-svg-icons"
;
const
ChatHeader
=
styled
.
div
`
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
box-shadow: 1px 1px 7px #8395a7;
`
;
const
NickNameBox
=
styled
.
div
`
display: flex;
flex-direction: column;
padding: 10px;
opacity: 0.8;
`
;
const
NickName
=
styled
.
span
`
font-size: 20px;
`
;
const
IconBox
=
styled
.
div
`
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
opacity: 0.8;
`
;
export
default
()
=>
{
return
(
<
ChatHeader
>
<
NickNameBox
>
<
NickName
/>
NickName
<
/NickNameBox
>
<
IconBox
>
<
FontAwesomeIcon
icon
=
{
faPhone
}
/
>
<
FontAwesomeIcon
icon
=
{
faEllipsisH
}
/
>
<
/IconBox
>
<
/ChatHeader
>
);
};
front/src/Components/ChatMain/ChatScreen.js
deleted
100644 → 0
View file @
24d6131
import
React
from
"react"
;
import
styled
from
"styled-components"
;
import
IncomingMsg
from
"../IncomingMsg"
;
import
OutcomingMsg
from
"../OutcomingMsg"
;
const
ChatScreen
=
styled
.
div
``
;
export
default
()
=>
{
return
(
<
ChatScreen
>
<
IncomingMsg
/>
<
OutcomingMsg
/>
<
/ChatScreen
>
);
};
front/src/Components/ChatMain/MainScreen.js
deleted
100644 → 0
View file @
24d6131
import
React
from
"react"
;
import
styled
from
"styled-components"
;
import
ChatHeader
from
"./ChatHeader"
;
import
ChatScreen
from
"./ChatScreen"
;
import
ChatFooter
from
"./ChatFooter"
;
const
MainScreen
=
styled
.
div
`
display: flex;
flex-direction: column;
width: 55%;
`
;
export
default
()
=>
{
return
(
<
MainScreen
>
<
ChatHeader
/>
<
ChatScreen
/>
<
ChatFooter
/>
<
/MainScreen
>
);
};
Please
register
or
login
to post a comment