import { useState } from 'react' import {Stack, Button, Typography} from '@mui/material' import {Home, People, List, Settings, Book} from '@mui/icons-material' type Props = {} function Navigation({}: Props) { const [buttonActive, setButtonActive] = useState(1); const btnNavigateClick =(buttonID:number) =>{ setButtonActive(buttonID); } return ( Меню ) }; export default Navigation;