In react 18, They removed children as a default prop on the FC type. Please use below code to fix the issue.
Existing Code:
export const ContextClass: React.FC = ({children}) => {}
Improved Code:
export const ContextClass = ({children}: {children: React.ReactNode}) => {}