Files
Reactive-Resume/client/wrappers/index.tsx
2022-12-03 00:15:08 +01:00

19 lines
483 B
TypeScript

import DateWrapper from './DateWrapper';
import FontWrapper from './FontWrapper';
import SentryWrapper from './SentryWrapper';
import ThemeWrapper from './ThemeWrapper';
const WrapperRegistry: React.FC<React.PropsWithChildren<unknown>> = ({ children }) => (
<ThemeWrapper>
<FontWrapper>
<DateWrapper>
<SentryWrapper>
<>{children}</>
</SentryWrapper>
</DateWrapper>
</FontWrapper>
</ThemeWrapper>
);
export default WrapperRegistry;