Solo quiero vincular los archivos pero no funciona. No estoy seguro de lo que estoy haciendo mal. Podrías dejármelo saber, por favor. Este es mi primer día usando reaccionar. Entonces, por favor perdona. Estoy siguiendo este tutorial de Gatsby.
gatsbyjs.com/docs/tutorial/part-2/
js
import * as React from 'react' import { Link } from 'gatsby' const IndexPage = () => { return ( <main> <title>Home Page</title> <h1>Welcome to my Gatsby site!</h1> <Link to="/about">About</Link> <p>I'm making this by following the Gatsby Tutorial.</p> </main> ) } export default IndexPagejs segunda pagina
import * as React from 'react' import { Link } from 'gatsby' const AboutPage = () => { return ( <main> <title>About Me</title> <h1>About Me</h1> <Link to="/">Back to Home</Link> <p>Hi there! I'm the proud creator of this site, which I built with Gatsby.</p> </main> ) } export default AboutPageIntente import React from 'react' en su lugar