feat: add basic webui
This commit is contained in:
7
packages/auth/provider.tsx
Normal file
7
packages/auth/provider.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import type { ReactNode } from 'react';
|
||||
|
||||
type AuthProviderProps = {
|
||||
children: ReactNode;
|
||||
};
|
||||
|
||||
export const AuthProvider = ({ children }: AuthProviderProps) => children;
|
||||
Reference in New Issue
Block a user