chore: update dependencies and add AuthProvider component
- Updated dependencies in package.json: - Incremented versions for @kevisual/api, @kevisual/context, @kevisual/router, @tanstack/react-router, @kevisual/query, @tailwindcss/vite, @tanstack/react-router-devtools, @tanstack/router-plugin, @types/node, tailwind-merge, and tailwindcss. - Added fuse.js as a new dependency. - Refactored __root.tsx to include AuthProvider for authentication context. - Created a new AuthProvider component in src/pages/auth/index.tsx.
This commit is contained in:
8
src/pages/auth/index.tsx
Normal file
8
src/pages/auth/index.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
type Props = {
|
||||
children: React.ReactNode
|
||||
}
|
||||
export const AuthProvider = ({ children }: Props) => {
|
||||
return <>
|
||||
{children}
|
||||
</>
|
||||
}
|
||||
Reference in New Issue
Block a user