import type { FC } from 'react'; import { ExternalLink } from '@cutting/component-library'; import { ApplicationLayout } from '../../layouts/ApplicationLayout'; import { Repo, repos } from './repos'; import * as styles from './OSS.css'; import { Github } from '../Svg/Github'; export const OSS: FC = () => (

Prominent opens source pull requests

My Work

{repos.map((repo: Repo, i: number) => (

{repo.name}

{repo.description}
))}

For full list of github repos click here

); export default OSS;