mirror of
https://github.com/strapi/strapi.git
synced 2025-08-13 19:27:34 +00:00
13 lines
223 B
JavaScript
13 lines
223 B
JavaScript
import styled from 'styled-components';
|
|
import { Container } from 'reactstrap';
|
|
|
|
const ContainerFluid = styled(Container)`
|
|
padding: 0;
|
|
`;
|
|
|
|
ContainerFluid.defaultProps = {
|
|
fluid: true,
|
|
};
|
|
|
|
export default ContainerFluid;
|