Skip to content

Instantly share code, notes, and snippets.

@nomoney4me
Last active October 24, 2018 01:18
Show Gist options
  • Select an option

  • Save nomoney4me/6239a58b3a18b4fa5227cbd2bdd628ff to your computer and use it in GitHub Desktop.

Select an option

Save nomoney4me/6239a58b3a18b4fa5227cbd2bdd628ff to your computer and use it in GitHub Desktop.
export default (props) => {
console.log(props.data)
return (
<PivotTable
data={ props.data }
cols={ ['Incoming'] }
rows={ ['Status'] }
tableOptions={ {
clickCallback: (e, value, filters, pivotData) => {
alert('hi')
}
} }
/>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment