Files
twenty/front/src/modules/ui/layout/containers/VerticalFullWidthContainer.tsx
T
Lucas Bordeau 5e0e449e4c Fix/table rerenders (#609)
* Fixed top bar rerenders

* Fixed rerender on editable cell

* Fix lint

* asd

* Fix

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2023-07-11 20:51:24 -07:00

16 lines
289 B
TypeScript

import styled from '@emotion/styled';
const StyledContainer = styled.div`
display: flex;
flex-direction: column;
width: 100%;
`;
export function VerticalFullWidthContainer({
children,
}: {
children: JSX.Element[];
}) {
return <StyledContainer>{children}</StyledContainer>;
}