import React from 'react'; const Label = ({ children, onClick }) => { return ( {children} ); }; export default Label;