webpack/examples/reexport-components/components/Checkbox.js

5 lines
84 B
JavaScript
Raw Permalink Normal View History

2020-11-26 18:44:43 +08:00
const Checkbox = () => {
return <input type="checkbox" />;
};
export { Checkbox };