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.

20 lines (18 loc) 381 B
import React, { PropTypes } from 'react'; import H1 from '../atoms/H1'; /** * Banner for displaying basic data */ export default class Banner extends React.Component { /** * @return {ReactElement} */ render() { return ( <div className='container'> <H1 title='testing'/> </div> ); } }