autoresponsive-react
autoresponsive-react copied to clipboard
Invalid typescript specification
Currently, index.t.ts
contains:
declare class AutoResponsive extends React.Component<AutoResponsiveProps, any> {}
But this doesn't allow child elements! It instead needs to be
declare class AutoResponsive extends Component<PropsWithChildren<AutoResponsiveProps>, any> {}