UNPKG

react-cauldron

Version:

We have a library of components to display that you can expand on. We provide basic props and you can add in any extra props you wish.

18 lines (14 loc) 294 B
import React, { PropTypes } from 'react'; export default class H3 extends React.Component { constructor() { super(); } render() { return ( <h3>{this.props.title}</h3> ) } }; H3.PropTypes = { title: React.PropTypes.string.isRequired };