File size: 173 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 | import styled from 'styled-components';
import Section from './Section';
const CenteredSection = styled(Section)`
text-align: center;
`;
export default CenteredSection;
|
1e92f2d | 1 2 3 4 5 6 7 8 9 | import styled from 'styled-components';
import Section from './Section';
const CenteredSection = styled(Section)`
text-align: center;
`;
export default CenteredSection;
|