mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
21 lines
403 B
Plaintext
21 lines
403 B
Plaintext
---
|
|
import { Admin } from "bknd/ui";
|
|
import "bknd/dist/styles.css";
|
|
|
|
import { getApi } from "bknd/adapter/astro";
|
|
|
|
const api = getApi(Astro, { mode: "dynamic" });
|
|
const user = api.getUser();
|
|
|
|
export const prerender = false;
|
|
---
|
|
|
|
<html>
|
|
<body>
|
|
<Admin
|
|
withProvider={{ user }}
|
|
config={{ basepath: "/admin", color_scheme: "dark" }}
|
|
client:only
|
|
/>
|
|
</body>
|
|
</html> |