File size: 151 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import styled from 'styled-components';
const Wrapper = styled.div`
width: 100%;
text-align: center;
margin: 4em 0;
`;
export default Wrapper;
|
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import styled from 'styled-components';
const Wrapper = styled.div`
width: 100%;
text-align: center;
margin: 4em 0;
`;
export default Wrapper;
|