sdy

create ChatListBox.js

1 +import React from "react";
2 +import styled from "styled-components";
3 +import ImgIconBox from "./ImgIconBox";
4 +import TextBox from "./TextBox";
5 +
6 +const ChatListBox = styled.div`
7 + width: 100%;
8 + display: flex;
9 + flex-direction: row;
10 + justify-content: flex-start;
11 + align-items: center;
12 + margin: 20px 10px;
13 +`;
14 +
15 +export default () => {
16 + return (
17 + <ChatListBox>
18 + <ImgIconBox />
19 + <TextBox />
20 + </ChatListBox>
21 + );
22 +};