UNPKG

react-marquee-slider-vertical

Version:

The marquee slider of your wildest dreams. Only for React.js ⛺

17 lines (13 loc) 364 B
import React from "react"; import { Link } from "gatsby"; import Layout from "../components/Layout"; import SEO from "../components/seo"; const SecondPage = () => ( <Layout> <SEO title="Page two" /> <h1>Hi from the second page</h1> <p>Welcome to page 2</p> <Link to="/">Go back to the homepage</Link> </Layout> ); export default SecondPage;