mirror of
https://github.com/jgthms/bulma
synced 2026-03-15 02:04:29 -07:00
17 lines
298 B
JavaScript
17 lines
298 B
JavaScript
import VarItem from "components/VarItem";
|
|
import { CSSVAR_KEYS } from "root/constants";
|
|
|
|
function Grid() {
|
|
const ids = CSSVAR_KEYS.grid.map((i) => i.id);
|
|
|
|
return (
|
|
<div>
|
|
{ids.map((id) => {
|
|
return <VarItem key={id} id={id} />;
|
|
})}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Grid;
|