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