mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-11 10:56:25 +01:00
10 lines
213 B
JavaScript
10 lines
213 B
JavaScript
import { createElement } from "../../lib/skeleton/index.js";
|
|
|
|
export default function(render) {
|
|
const $modal = createElement(`
|
|
<div>
|
|
MODAL DELETE
|
|
</div>
|
|
`);
|
|
render($modal);
|
|
}
|