import React from 'react'; import { States } from '../../utilities'; import * as SHAPES from '.'; export default { title: 'Components/Shape' }; export const Shapes = () => ( <> {Object.entries(SHAPES).map(([name, Component]) => ( ))} );