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