UNPKG

presale-demo-pe

Version:

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

17 lines (13 loc) 297 B
import React, { PropTypes } from 'react'; import './Finish.css'; const Finish = ({ children }) => ( <div className="finish"> <p className="finish__text"> {children} </p> </div> ); Finish.propTypes = { children: PropTypes.string }; export default Finish;