meteor-tabular
meteor-tabular copied to clipboard
[React Integrate]: Could I use React Component instead of "Template Cells"?
I try to use Tabular on React by #189.
But I would like to use React Component instead of Template Cells
{
tmpl: Meteor.isClient && Template.bookCheckOutCell
}
------------
<template name="bookCheckOutCell">
<button type="button" class="btn btn-xs check-out">Check Out</button>
</template>
Please help me.