update pay function
This commit is contained in:
13
boilerplate-chakra-pro-main/components/providers.tsx
Normal file
13
boilerplate-chakra-pro-main/components/providers.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
'use client';
|
||||
|
||||
import theme from '@/theme/theme';
|
||||
import { CacheProvider } from '@chakra-ui/next-js';
|
||||
import { ChakraProvider } from '@chakra-ui/react';
|
||||
|
||||
export function Providers({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<CacheProvider>
|
||||
<ChakraProvider theme={theme}>{children}</ChakraProvider>
|
||||
</CacheProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user