cpui-components
Version:
18 lines (16 loc) • 586 B
Markdown
An Action Menu with four options in the dropdown:
```js
<ActionMenu onChange={(e) => { console.log(e) }} options={["Daily", "Weekly", "Monthly", "Yearly"]} />
```
An Action Menu within a CPCard component:
```js
// Prototype CPCard Data
const cardData = {
title: 'Title Here',
description: 'Description goes here and stuff.',
date: 1505754913187,
contentType: 'FAQ',
thumbnail: { url: 'https://www.fillmurray.com/300/300', alt: 'Bill Murray' }
};
<div style={{"width":"450px"}}><CPCard data={cardData} selectionType="checkbox" hasActionMenu /></div>
```