mirror of https://github.com/webpack/webpack.git
5 lines
84 B
JavaScript
5 lines
84 B
JavaScript
|
const Checkbox = () => {
|
||
|
return <input type="checkbox" />;
|
||
|
};
|
||
|
export { Checkbox };
|