10 lines
147 B
JavaScript
10 lines
147 B
JavaScript
// @flow
|
|
import styled from 'styled-components';
|
|
|
|
const Centered = styled.div`
|
|
margin: 0 auto;
|
|
max-width: 1000px;
|
|
`;
|
|
|
|
export default Centered;
|