weird zoom bug

This commit is contained in:
Drew Taylor
2021-07-14 17:09:17 -07:00
parent c0a11de056
commit 1bb679a3f8
6 changed files with 179 additions and 64 deletions

View File

@@ -0,0 +1,23 @@
import React from "react";
import Dialog from '@material-ui/core/Dialog';
import DialogTitle from '@material-ui/core/DialogTitle';
const VehiclePopUp = ({ vin, online, doors, location, windows }) => {
console.log(location);
return (
<Dialog aria-labelledby="simple-dialog-title" open={true}>
<DialogTitle>{vin}</DialogTitle>
<p>{online.toString()}</p>
{/* {doors != null && (
<ul>
{doors.forEach((value, key) => (<li>{key}: {value.toString()}</li>))}
</ul>
)}
<ul>
{location != null && location.forEach((value, key) => (<li>{key}: {value.toString()}</li>))}
</ul> */}
</Dialog>
);
};
export { VehiclePopUp };