/* global React */ import Card from '../../components/card'; export default React.createClass({ displayName: 'CardTest', onClick () { console.log('onClick', arguments); }, onActionClick () { console.log('onClick', arguments); }, render () { const text = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.'; const legend = 'Lorem Ipsum is simply dummy text'; const actions = [ { label: 'Save', icon: 'add', onClick: this.onActionClick }, { label: 'Close', onClick: this.onActionClick }]; return (

Cards

Basic properties

Sizes using type property

); } });