Skip to content

Commit

Permalink
add Providers component
Browse files Browse the repository at this point in the history
  • Loading branch information
firehawk89 committed Jan 23, 2024
1 parent 503cc62 commit 3ad16fc
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/store/providers/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
'use client'

import { FC, ReactNode } from 'react'

import ThemeProvider from './theme-provider'

type ProvidersProps = {
children: ReactNode
}

const Providers: FC<ProvidersProps> = ({ children }) => {
return <ThemeProvider>{children}</ThemeProvider>
}

export default Providers

0 comments on commit 3ad16fc

Please sign in to comment.