Skip to content
brandonk1234 edited this page Feb 23, 2017 · 3 revisions

Card

The card component displays content and items inside of it, and looks similar to a playing card.

Props

There are no props needed for this component, you pass in what you want to render inside the actionBar as a child of the component. Look at example for a better understanding.

Example

<Card className="asset review">
    <Button 
        type="primary" 
        text="for card component" 
        onClick={this.onClick}/>
    <div>
        card component
    </div>
</Card

Related