import React, { FunctionComponent } from 'react' type Props = { // } const Footer: FunctionComponent<Props> = () => ( <div> <h1>Footer</h1> </div> ) export default Footer;
info at phpclasses dot org