import React from 'react' export default function Item({label, hint, children}) { return (
{label}:{' '} {children}
) }