I have a very simple functional component as follows:
import * as React from \'react\'; export interface AuxProps { children: React.ReactNode } con
This has always worked for me:
type Props = { children: JSX.Element; };