mirror of
https://github.com/zadam/trilium.git
synced 2025-11-12 16:25:51 +01:00
11 lines
335 B
TypeScript
11 lines
335 B
TypeScript
|
|
export default function Modal({ children }) {
|
||
|
|
return (
|
||
|
|
<div className="modal fade mx-auto" tabIndex={-1} role="dialog">
|
||
|
|
<div className="modal-dialog" role="document">
|
||
|
|
<div className="modal-content">
|
||
|
|
{children}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|