frontPanel/src/pages/ContactFormPage/settingForm.tsx
2023-12-31 05:53:25 +03:00

18 lines
567 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
);
}