mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
9 lines
280 B
TypeScript
9 lines
280 B
TypeScript
import { Admin, type BkndAdminProps } from "bknd/ui";
|
|
import "bknd/dist/styles.css";
|
|
import { useAuth } from "bknd/client";
|
|
|
|
export default function AdminPage(props: BkndAdminProps) {
|
|
const auth = useAuth();
|
|
return <Admin {...props} withProvider={{ user: auth.user }} />;
|
|
}
|