Showing
1 changed file
with
20 additions
and
0 deletions
front/src/Components/Main/MainScreen.js
0 → 100644
1 | +import React from "react"; | ||
2 | +import styled from "styled-components"; | ||
3 | +import ChatHeader from "./ChatHeader"; | ||
4 | +import ChatScreen from "./ChatScreen"; | ||
5 | +import ChatFooter from "./ChatFooter"; | ||
6 | + | ||
7 | +const MainScreen = styled.div` | ||
8 | + display: flex; | ||
9 | + flex-direction: column; | ||
10 | +`; | ||
11 | + | ||
12 | +export default () => { | ||
13 | + return ( | ||
14 | + <MainScreen> | ||
15 | + <ChatHeader /> | ||
16 | + <ChatScreen /> | ||
17 | + <ChatFooter /> | ||
18 | + </MainScreen> | ||
19 | + ); | ||
20 | +}; |
-
Please register or login to post a comment