type Props = { label: string; }; export default function UserLabel({ label }: Props) { return ( {label} ); }