mirror of https://github.com/webpack/webpack.git
5 lines
98 B
JavaScript
5 lines
98 B
JavaScript
|
const Dialog = ({ children }) => {
|
||
|
return <dialog>{children}</dialog>;
|
||
|
};
|
||
|
export default Dialog;
|