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