gramps-graphql/gramps

View on GitHub
docs/src/pages/404.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import { FourOhFour } from 'gatsby-theme-carbon';

const links = [
  { href: '/', text: 'Home' },
  { href: '/quick-start', text: 'Quick start' },
];

const Custom404 = () => <FourOhFour links={links} />;

export default Custom404;