My application is stored in /src/index.js but i also have a /App.js and a /index.js.
I don\'t know the difference between these and i think thats the reason im getti
Your default export is not returning anything :
export default () => { }
To return JSX with an arrow function you need to use () => ( ) or the equivalent with curly braces : () => { return ( ) } :
() => ( )
() => { return ( ) }
export default () => ( )
or :
export default () => { return ( ) }