import React from 'react'; import { BfoGrid, BfoGridItemSizes } from './grid'; const Box = () => { return (
Item
); }; export const sizes = () => { return Object.values(BfoGridItemSizes).map(size => (

Size: {size}

)); };