A React component to create a grid of equally scaled boxes packed efficiently into a container, as seen in video conferencing apps like Zoom.
https://mxmul.github.io/react-packed-grid/
npm install --save react-packed-grid
import React from 'react'
import { PackedGrid } from 'react-packed-grid'
function Example {
return (
<PackedGrid>
<div>Box 1</div>
<div>Box 2</div>
<div>Box 3</div>
</PackedGrid>
);
}
MIT © mxmul