feat: main menu

This commit is contained in:
karishmas6
2024-06-24 22:42:37 +05:30
parent 517172175e
commit 1a126da38c

View File

@@ -0,0 +1,51 @@
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>
);
}