import React from 'react' import { Link, StaticQuery, graphql } from 'gatsby' import RepositoryList from './RepositoryList' import QuickRun from './QuickRun' import styles from './index.module.scss' const query = graphql` query { allRepositoriesYaml { edges { node { id group items { name links { name url } } } } } } ` const Repositories = () => ( { const repositories = data.allRepositoriesYaml.edges return (

Repositories

Most of our repositories are open source and we listed the key repositories here. Start with the{' '} software components {' '} document for an introduction to the components creating the Ocean network.

) }} /> ) export default Repositories