57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
import React from "react";
|
|
import Card from "@mui/material/Card";
|
|
import { Typography } from "@mui/material";
|
|
import Box from '@mui/material/Box';
|
|
import Tab from '@mui/material/Tab';
|
|
import TabContext from '@mui/lab/TabContext';
|
|
import TabList from '@mui/lab/TabList';
|
|
import TabPanel from '@mui/lab/TabPanel';
|
|
|
|
export default function ExperimentalAPI() {
|
|
|
|
const [value, setValue] = React.useState('1');
|
|
|
|
const handleChange = (event, newValue) => {
|
|
setValue(newValue);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
mb: '10px'
|
|
}}
|
|
>
|
|
Experimental API
|
|
</Typography>
|
|
|
|
<Box sx={{ width: '100%', typography: 'body1' }}>
|
|
<TabContext value={value}>
|
|
<Box sx={{ borderBottom: 1, borderColor: 'divider' }}>
|
|
<TabList onChange={handleChange} aria-label="lab API tabs example">
|
|
<Tab label="Item One" value="1" />
|
|
<Tab label="Item Two" value="2" />
|
|
<Tab label="Item Three" value="3" />
|
|
</TabList>
|
|
</Box>
|
|
<TabPanel value="1">Item One</TabPanel>
|
|
<TabPanel value="2">Item Two</TabPanel>
|
|
<TabPanel value="3">Item Three</TabPanel>
|
|
</TabContext>
|
|
</Box>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|