It would be great to create other components types like FunctionComponent or StatelesFunction
import * as React from 'react'
interface IAppProps {}
const App: React.FunctionComponent<IAppProps> = props => {
return
}
export default App
import * as React from 'react'
export interface IAppScreenProps {}
export function AppScreen(props: IAppScreenProps) {
return <div></div>
}
It would be great to create other components types like FunctionComponent or StatelesFunction