sdy

create OTOChat files

1 +import React from "react";
2 +import OTOChatPresenter from "./OTOChatPresenter";
3 +
4 +export default () => {
5 + return <OTOChatPresenter />;
6 +};
......
1 +import React from "react";
2 +import styled from "styled-components";
3 +import Menu from "../Menu/MenuContainer";
4 +import FriendsList from "../../Components/FriendsList/FriendsList";
5 +import ChatScreen from "../../Components/ChatMain/MainScreen";
6 +
7 +const Wrapper = styled.div`
8 + width: 100%;
9 + display: flex;
10 + flex-direction: row;
11 + overflow: hidden;
12 +`;
13 +
14 +export default () => {
15 + return (
16 + <Wrapper>
17 + <Menu />
18 + <FriendsList />
19 + <ChatScreen />
20 + </Wrapper>
21 + );
22 +};
......