import Grid from '@mui/material/Grid'; import { Button, Box, Switch } from '../../components/UI'; import React, { useState } from 'react' interface Props { children?: React.ReactNode; onClick: () => void; disable: boolean; } export const Category: React.FC = ({children, onClick, disable}) => { return( <>

Выберите наминацию ?

Выберите стол ?

) }