Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created January 3, 2018 13:21
Show Gist options
  • Save amandeepmittal/463ab65d219b0d99d1107d5c01a34916 to your computer and use it in GitHub Desktop.
Save amandeepmittal/463ab65d219b0d99d1107d5c01a34916 to your computer and use it in GitHub Desktop.
import React from "react";
import Link from "gatsby-link";
const ThridPage = () => (
<div>
<h1>Third Page</h1>
<p>This is my first Gtasby site</p>
<Link to="/page-2/">Back to Page 2</Link>
<br />
<Link to="/">Go back to the homepage</Link>
</div>
);
export default ThridPage;
@kant
Copy link

kant commented Jan 28, 2019

On #04 const ThridPage = () => ( should not be const ThirdPage = () => (?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment