import React from 'react'; import type { ContextProps } from './GlobalContext.types'; import { RowndProvider as RowndReactProvider } from '@rownd/react'; const RowndProvider: React.FC = ({ children, config }) => { return ( {children} ); }; export { RowndProvider };