5e0e449e4c
* Fixed top bar rerenders * Fixed rerender on editable cell * Fix lint * asd * Fix --------- Co-authored-by: Charles Bochet <charles@twenty.com>
16 lines
289 B
TypeScript
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>;
|
|
}
|