A Javascript UI component for browsing documents
npm i @uncharted.software/cards
<div id="cards-panel" ></div>
import Cards from '@uncharted/cards';
const cards = new Cards();
cards.loadData([
{
id: 1,
topBarColor: 'red',
summary: 'summary-text',
content: 'text-content'
},
{
id: 2,
topBarColor: 'blue',
summary: 'summary-text',
content: 'text-content'
},
]);
$('#cards-panel').html(cards.render());
yarn install
yarn run build
https://github.com/unchartedsoftware/cards/blob/master/example/index.html
yarn start