mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 16:22:59 +10:00
19 lines
483 B
TypeScript
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;
|