1
2import React from "react"
3import { Link } from "gatsby"
4const Page = () => (
5 <div>
6 <p>
7 Check out my <Link to="/blog">blog</Link>!
8 </p>
9 <p>
10 {/* Note that external links still use `a` tags. */}
11 Follow me on <a href="https://twitter.com/gatsbyjs">Twitter</a>!
12 </p>
13 </div>
14)