import { Table } from '@toptal/picasso' import React from 'react' const data = { noop: `A function that does nothing, a replacement for () => {}`, isBoolean: `Checks if the provided value is a boolean`, isNumber: `Checks if the provided value is a number`, isString: `Checks if the provided value is a string`, } const Example = () => ( Name Description {Object.entries(data).map(([name, description]) => ( {name} {description} ))}
) export default Example