mirror of
https://github.com/strapi/strapi.git
synced 2025-08-14 11:48:43 +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;
|