Skip to content

Commit

Permalink
feat(providers): add GeistProvider provider
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed May 25, 2023
1 parent eba77ec commit 7f5b63a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/providers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

import { ReactNode } from 'react'
import { ThemeProvider } from 'next-themes'
import { GeistProvider } from '@geist-ui/core'

export function Providers({ children }: { children: ReactNode }) {
return (
<ThemeProvider attribute="class" defaultTheme="system">
{children}
<GeistProvider>{children}</GeistProvider>
</ThemeProvider>
)
}

0 comments on commit 7f5b63a

Please sign in to comment.