Created
November 12, 2019 00:20
-
-
Save DSchau/319614ee9cd2c63da267bd10cb191c5b to your computer and use it in GitHub Desktop.
Plain ol' static images with Gatsby
This file contains 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 imgSrc from './assets/whatever.png' | |
export default () => ( | |
<div> | |
<h1>Look below! A static image</h1> | |
<img src={imgSrc} /> {/* I'm a plain ol' static image */} | |
</div> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment