import React from 'react'; import PropTypes from 'prop-types'; import { Container, Row, Col } from './../../../components'; import { HeaderMain } from "../../components/HeaderMain"; import UsersList from './UsersList'; import UsersGrid from './UsersGrid'; import { UsersLeftNav } from "../../components/Users/UsersLeftNav"; import { ProjectsSmHeader } from "../../components/Projects/ProjectsSmHeader"; const Users = (props) => ( { props.match.params.type === "list" ? : } ); Users.propTypes = { match: PropTypes.object.isRequired }; export default Users;