Files
parcer/src/components/organisms/MainMenu.tsx
2024-06-24 22:42:37 +05:30

52 lines
1.3 KiB
TypeScript

import * as React from 'react';
import Tabs from '@mui/material/Tabs';
import Tab from '@mui/material/Tab';
import Box from '@mui/material/Box';
import { Paper } from "@mui/material";
import styled from "styled-components";
interface MainMenuProps {
value: string;
handleChangeContent: (newValue: string) => void;
}
export const MainMenu = ({ value = 'recordings', handleChangeContent }: MainMenuProps) => {
const handleChange = (event: React.SyntheticEvent, newValue: string) => {
handleChangeContent(newValue);
};
return (
<Paper
sx={{
height: 'auto',
maxWidth: 'fit-content',
backgroundColor: 'lightgray',
paddingTop: '2rem',
}}
>
<Box sx={{
width: '100%',
paddingBottom: '22rem',
}}>
<Tabs
value={value}
onChange={handleChange}
textColor="primary"
indicatorColor="primary"
orientation="vertical"
>
<Tab sx={{
alignItems: 'baseline',
fontSize:'medium',
}} value="recordings" label="Recordings" />
<Tab sx={{
alignItems: 'baseline',
fontSize:'medium',
}} value="runs" label="Runs" />
</Tabs>
</Box>
</Paper>
);
}