better-auth-dashboard
Version:
A better-Auth powered admin dashboard.
17 lines (16 loc) • 418 B
JavaScript
import { Home, ShieldCheck } from "lucide-react";
export const routeProtection = () => {
// const component = <div>Hello from users plugin!</div>;
return {
icon: ShieldCheck,
title: "Route Protection",
slug: "route-protection",
subItems: [
{
title: "test",
slug: "test",
icon: Home
},
],
};
};