import React, { Component } from 'react' import PropTypes from 'prop-types' import { Route, Switch, Redirect } from 'react-router-dom'; import { Subnav } from '../../components/index' import { Interface } from './Interface/Interface.js' export default class GroupList extends Component { static propTypes = { match: PropTypes.object } state = { } constructor(props) { super(props) } componentWillMount() { } render () { const { match } = this.props; console.log('project') return (