frontPanel/src/pages/ContactFormPage/settingForm.tsx

17 lines
625 B
TypeScript
Raw Normal View History

import {Box, Typography} from "@mui/material";
import CustomCheckbox from "@ui_kit/CustomCheckbox";
export default function SettingForm() {
return (
<Box sx={{display: 'flex'}}>
<Box sx={{padding: '20px'}}>
<Typography>Тип формы</Typography>
<CustomCheckbox label={'Только мессенджеры'}/>
</Box>
<Box sx={{padding: '20px'}}>
<Typography>Настройки вопросов</Typography>
<CustomCheckbox label={'Текст мотивация'}/>
</Box>
</Box>
);
};