filestash/public/pages/adminpage/ctrl_backend.js
2023-07-21 01:25:05 +10:00

18 lines
607 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 WithShell from "./decorator_sidemenu.js";
export default AdminOnly(WithShell(function(render) {
const $page = createElement(`
<div className="component_settingspage sticky">
<form>
FORM BUILDER BACKEND
</form>
</div>
`);
render($page);
withEffect(animate($page).pipe(CSSTransition()));
}));