UNPKG

presale-demo-pe

Version:

This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).

26 lines (22 loc) 574 B
import React, { PropTypes } from 'react'; import './Step.css'; const Step = ({ num, title, component }) => ( <div className="step"> <h4 className="step__title"> <span>{num}</span> . &nbsp; <span dangerouslySetInnerHTML={{ __html: title }} /> </h4> {component && <div className="steps_content"> {component} </div> } </div> ); Step.propTypes = { num: PropTypes.number, title: PropTypes.string, component: PropTypes.node }; export default Step;