import { FC, PropsWithChildren } from 'react'; import { CntrlContext } from './CntrlContext'; import { cntrlSdkContext } from './defaultContext'; export const CntrlProvider: FC> = ({ children }) => { return ( {children} ); };