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

5 lines
98 B
JavaScript
Raw Permalink Normal View History

2020-11-26 18:44:43 +08:00
const Dialog = ({ children }) => {
return <dialog>{children}</dialog>;
};
export default Dialog;