UNPKG
better-auth-dashboard
Version:
beta (0.0.2-beta.0)
latest (0.0.4)
0.0.4
0.0.2
0.0.2-beta.0
A better-Auth powered admin dashboard.
better-auth-dashboard
/
src
/
react
/
components
/
Dashboard
/
dashboardContext
/
index.ts
8 lines
(5 loc)
•
249 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ createContext }
from
"react"
;
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
export
type
DashboardContext
= {};
//@ts-expect-error - intentional.
export
const
dashboardContext = createContext<
DashboardContext
>(
null
);