feat: introduce connections page in the admin panel

This commit is contained in:
Kasia
2023-11-23 11:13:58 +00:00
committed by Ali BARIN
parent 3801f9cfa0
commit 8f09681771
18 changed files with 851 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
import { styled } from '@mui/material/styles';
import BaseForm from 'components/Form';
export const Form = styled(BaseForm)(({ theme }) => ({
display: 'flex',
flexDirection: 'column',
gap: theme.spacing(2),
paddingTop: theme.spacing(1),
}));