import { Table } from '@toptal/picasso' import React from 'react' const data = { isPointerDevice: `Checks if the primary input mechanism includes an accurate pointing device`, isBrowser: `Checks if there is a browser or not.`, } const Example = () => ( Name Description {Object.entries(data).map(([name, description]) => ( {name} {description} ))}
) export default Example