mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-12 19:36:54 +01:00
18 lines
615 B
JavaScript
18 lines
615 B
JavaScript
import { createElement } from "../../lib/skeleton/index.js";
|
|
import { withEffect } from "../../lib/rxjs/index.js";
|
|
import { animate, CSSTransition } from "../../lib/animate/index.js";
|
|
|
|
import AdminOnly from "./decorator_admin_only.js";
|
|
import WithAdminMenu from "./decorator_sidemenu.js";
|
|
|
|
export default AdminOnly(WithAdminMenu(function(render) {
|
|
const $page = createElement(`
|
|
<div className="component_settingspage sticky">
|
|
<form>
|
|
FORM BUILDER BACKEND
|
|
</form>
|
|
</div>
|
|
`);
|
|
render($page);
|
|
withEffect(animate($page).pipe(CSSTransition()));
|
|
}));
|