Skip to content

Commit

Permalink
fix linting (#8220)
Browse files Browse the repository at this point in the history
  • Loading branch information
pieh committed Sep 17, 2018
1 parent 49e17f8 commit e759d21
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions integration-tests/gatsby-image/src/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import React from 'react'
import { Link } from 'gatsby'
import PropTypes from 'prop-types'

import Layout from '../components/layout'

const IndexPage = () => (
<Layout>
<h1>Gatsby Image integration test</h1>
<h2>Please navigate to <Link to="/fixed">/fixed</Link>, <Link to="/fluid">/fluid</Link>, or <Link to="/traced">/traced</Link>.</h2>
<h2>
Please navigate to <Link to="/fixed">/fixed</Link>,{` `}
<Link to="/fluid">/fluid</Link>, or <Link to="/traced">/traced</Link>.
</h2>
</Layout>
)

Expand Down

0 comments on commit e759d21

Please sign in to comment.