I have a very simple functional component as follows:
import * as React from \'react\'; export interface AuxProps { children: React.ReactNode } con
you can declare your component like this:
const MyComponent: React.FunctionComponent = (props) => { return props.children; }