import React from 'react'; import faker from 'faker/locale/en_US'; import PropTypes from 'prop-types'; import { Badge, Progress } from './../../../components'; const ProjectsList = (props) => (
{ props.title || faker.commerce.productName() } { props.badgeTitle }
{ props.completeValue }%
Complete
{ props.myTasksValue }
My Tasks
{ props.daysDueValue }
Days Due
) ProjectsList.propTypes = { title: PropTypes.string, badgeColor: PropTypes.string, badgeTitle: PropTypes.string, progressValue: PropTypes.string, completeValue: PropTypes.string, myTasksValue: PropTypes.string, daysDueValue: PropTypes.string }; ProjectsList.defaultProps = { badgeColor: "secondary", badgeTitle: "Waiting", progressValue: "25", completeValue: "60", myTasksValue: "5", daysDueValue: "53" }; export { ProjectsList };