Last active
February 23, 2020 12:33
-
-
Save sachdeva-shrey/07a6b8ef822f2b385a15f186c933fcd6 to your computer and use it in GitHub Desktop.
Gallery Page
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 Image from "../components/Image" | |
const Gallery = () => ( | |
<div> | |
<Image alt="image_1" filename="image_1.jpg" /> | |
<Image alt="image_2" filename="image_2.jpg" /> | |
<Image alt="image_3" filename="image_3.jpg" /> | |
<Image alt="image_4" filename="image_4.jpg" /> | |
</div> | |
) | |
export default Gallery |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment