import * as PropTypes from 'prop-types'; import * as React from 'react'; import { Flex, Image } from '@fluentui/react-northstar'; import config from '../../config'; export default class ComponentDocLinks extends React.PureComponent { static propTypes = { repoPath: PropTypes.string.isRequired, type: PropTypes.string.isRequired, }; render() { const { repoPath } = this.props; return ( <> {repoPath} ); } }