Lucas/t 223 i can add comments to companies or people using the right (#181)

* wip

* Implemented comment input text component

* Improved behavior
This commit is contained in:
Lucas Bordeau
2023-06-01 19:49:37 +02:00
committed by GitHub
parent f906533b29
commit bf3097500a
13 changed files with 339 additions and 6 deletions

View File

@ -0,0 +1,21 @@
import styled from '@emotion/styled';
const StyledLayout = styled.div`
display: flex;
flex-direction: row;
width: fit-content;
height: fit-content;
padding: 20px;
background: ${(props) => props.theme.primaryBackground};
border-radius: 5px;
box-shadow: 0px 0px 2px;
`;
type OwnProps = {
children: JSX.Element;
};
export function ComponentStorybookLayout({ children }: OwnProps) {
return <StyledLayout>{children}</StyledLayout>;
}