feat: introduce paths

This commit is contained in:
kasia.oczkowska
2024-06-26 15:45:26 +01:00
parent abfd1116c7
commit 96c3c19a50
19 changed files with 1000 additions and 419 deletions

View File

@@ -0,0 +1,7 @@
import { styled } from '@mui/material/styles';
import Card from '@mui/material/Card';
export const Wrapper = styled(Card)`
width: 100%;
padding: ${({ theme }) => theme.spacing(2)};
`;