import { FormLabel } from '../forms'; // Prevents the event from bubbling up the DOM tree const stopPropagation = ( event ) => event.stopPropagation(); export default function SelectDropdownLabel( { children } ) { return (
  • { children }
  • ); }