12 lines
207 B
React
12 lines
207 B
React
|
import styled from "styled-components";
|
||
|
|
||
|
const MainContainer = styled.div`
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: right;
|
||
|
width: 100%;
|
||
|
height: 100vh;
|
||
|
`;
|
||
|
|
||
|
export default MainContainer;
|