|
@@ -0,0 +1,67 @@
|
|
|
|
|
+import * as React from 'react';
|
|
|
|
|
+import Box from '@mui/material/Box';
|
|
|
|
|
+import Drawer from '@mui/material/Drawer';
|
|
|
|
|
+import List from '@mui/material/List';
|
|
|
|
|
+import Divider from '@mui/material/Divider';
|
|
|
|
|
+import ListItem from '@mui/material/ListItem';
|
|
|
|
|
+import ListItemButton from '@mui/material/ListItemButton';
|
|
|
|
|
+import ListItemIcon from '@mui/material/ListItemIcon';
|
|
|
|
|
+import ListItemText from '@mui/material/ListItemText';
|
|
|
|
|
+import InboxIcon from '@mui/icons-material/MoveToInbox';
|
|
|
|
|
+import MailIcon from '@mui/icons-material/Mail';
|
|
|
|
|
+
|
|
|
|
|
+// import { MovilList } from './MovilList'
|
|
|
|
|
+let items = ['uno', 'dos', 'tres', 'cuatro', 'cinco','Inbox', 'Starred', 'Send email', 'Drafts','uno', 'dos', 'tres', 'cuatro', 'cinco','Inbox', 'Starred', 'Send email', 'Drafts']
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+export function MenuMovil(props) {
|
|
|
|
|
+
|
|
|
|
|
+ let { anchor } = props;
|
|
|
|
|
+
|
|
|
|
|
+ const list = (anchor) => (
|
|
|
|
|
+ <Box
|
|
|
|
|
+ sx={{ width: anchor === 'top' || anchor === 'bottom' ? 'auto' : 250 }}
|
|
|
|
|
+ role="presentation"
|
|
|
|
|
+ >
|
|
|
|
|
+ <List>
|
|
|
|
|
+ {items.map((text, index) => (
|
|
|
|
|
+ <ListItem key={text} disablePadding>
|
|
|
|
|
+ <ListItemButton>
|
|
|
|
|
+ <ListItemIcon>
|
|
|
|
|
+ {index % 2 === 0 ? <InboxIcon /> : <MailIcon />}
|
|
|
|
|
+ </ListItemIcon>
|
|
|
|
|
+ <ListItemText primary={text} />
|
|
|
|
|
+ </ListItemButton>
|
|
|
|
|
+ </ListItem>
|
|
|
|
|
+ ))}
|
|
|
|
|
+ </List>
|
|
|
|
|
+ <Divider />
|
|
|
|
|
+ <List>
|
|
|
|
|
+ {['All mail', 'Trash', 'Spam'].map((text, index) => (
|
|
|
|
|
+ <ListItem key={text} disablePadding>
|
|
|
|
|
+ <ListItemButton>
|
|
|
|
|
+ <ListItemIcon>
|
|
|
|
|
+ {index % 2 === 0 ? <InboxIcon /> : <MailIcon />}
|
|
|
|
|
+ </ListItemIcon>
|
|
|
|
|
+ <ListItemText primary={text} />
|
|
|
|
|
+ </ListItemButton>
|
|
|
|
|
+ </ListItem>
|
|
|
|
|
+ ))}
|
|
|
|
|
+ </List>
|
|
|
|
|
+ </Box>
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ return (
|
|
|
|
|
+ <div>
|
|
|
|
|
+ <React.Fragment >
|
|
|
|
|
+ <Drawer
|
|
|
|
|
+ anchor="left"
|
|
|
|
|
+ open={anchor} >
|
|
|
|
|
+ {list("left")}
|
|
|
|
|
+ </Drawer>
|
|
|
|
|
+ </React.Fragment>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ );
|
|
|
|
|
+}
|