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