gramps-graphql/gramps

View on GitHub
docs/src/gatsby-theme-carbon/components/LeftNav/ResourceLinks.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import ResourceLinks from 'gatsby-theme-carbon/src/components/LeftNav/ResourceLinks';

const links = [
  {
    title: 'GitHub',
    href: 'https://github.com/gramps-graphql/gramps',
  },
];

// shouldOpenNewTabs: true if outbound links should open in a new tab
const CustomResources = () => <ResourceLinks shouldOpenNewTabs links={links} />;

export default CustomResources;