import React, { PropTypes } from 'react'; import ns from './ns.json'; const propTypes = { children: PropTypes.string, isCompleted: PropTypes.bool }; export default function ChallengeTitle({ children, isCompleted }) { let icon = null; if (isCompleted) { icon = ( ); } return (

{ children || 'Happy Coding!' } { icon }

); } ChallengeTitle.displayName = 'ChallengeTitle'; ChallengeTitle.propTypes = propTypes;