ChatScreen.js
310 Bytes
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>
);
};