Files
twenty/front/src/layout/containers/FullWidthContainer.tsx
2022-12-05 00:49:45 +01:00

17 lines
321 B
TypeScript

import styled from '@emotion/styled';
type OwnProps = {
children: JSX.Element;
};
const StyledContainer = styled.div`
display: flex;
height: calc(100vh - 60px);
`;
function FullWidthContainer({ children }: OwnProps) {
return <StyledContainer>{children}</StyledContainer>;
}
export default FullWidthContainer;