ChatRoom_Grid.js
441 Bytes
import styled from "styled-components";
import React from 'react';
const GlobalGrid = styled.div`
display: grid;
justify-content: space-between;
grid-template-columns: 150px 150px;
`;
const Profile_Grid = styled.div`
display: flex;
grid-gap:5px;
grid-row-gap: 50px;
`;
// this information get from database
export default () => {
return (
<GlobalGrid>
<Profile_Grid>
</Profile_Grid>
</GlobalGrid>
);
};