Created
April 4, 2018 05:41
-
-
Save saigowthamr/3b40cf232ab1c96527a0f2704ff2c1d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react' | |
| import Link from 'gatsby-link' | |
| import Helmet from 'react-helmet' | |
| export default () => ( | |
| <div> | |
| <Helmet | |
| title="Intro to the gatsby" | |
| meta={[ | |
| { name: 'description', content: 'Simple inro to gatsby' }, | |
| { name: 'keywords', content: 'intro, gatsby,react,static' }, | |
| ]} | |
| /> | |
| Welcome to the gatsby intro page | |
| <hr /> | |
| <Link to="/">Move to Home</Link> | |
| </div> | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment