Merge pull request #3442 from nickofolas/fix/demo-stanek-grid

[Fix] Dummy Stanek grid width
This commit is contained in:
hydroflame
2022-04-13 17:35:37 -04:00
committed by GitHub

View File

@@ -17,7 +17,7 @@ export function DummyGrid(props: IProps): React.ReactElement {
const ghostGrid = zeros([props.width, props.height]); const ghostGrid = zeros([props.width, props.height]);
return ( return (
<Box> <Box>
<Table> <Table sx={{ width: props.width, height: props.height }}>
<Grid <Grid
width={props.width} width={props.width}
height={props.height} height={props.height}