dry-wash-pl/src/containers/LandingThemeProvider/LandingThemeProvider.tsx
2024-11-17 13:46:24 +03:00

15 lines
389 B
TypeScript

import React, { FC, PropsWithChildren } from 'react';
import { ChakraProvider } from '@chakra-ui/react';
import { default as landingTheme } from './theme-config';
import Fonts from './Fonts';
export const LandingThemeProvider: FC<PropsWithChildren> = ({ children }) => {
return (
<ChakraProvider theme={landingTheme}>
<Fonts />
{children}
</ChakraProvider>
);
};