Kentico/gatsby-source-kontent

View on GitHub
examples/relationships/src/pages/index.js

Summary

Maintainability
A
1 hr
Test Coverage
import React from "react"
import { Link } from "gatsby"
import Layout from "../components/layout";

const Index = () => (
  <Layout>
    <header>
      <h1>Examples</h1>
      <p>For the examples explanation, take a look at <a href="https://github.com/kontent-ai/gatsby-packages/tree/master/packages/gatsby-components#readme">GitHub example README</a></p>
    </header>
    <section>
      <ul>
        <li><Link to="/articles">Language variant relationships</Link></li>
        <li><Link to="/tags">Used by relationship</Link></li>
      </ul>
    </section>
  </Layout>
);


export default Index