@nebula.js/sn-table

table supernova

Usage no npm install needed!

<script type="module">
  import nebulaJsSnTable from 'https://cdn.skypack.dev/@nebula.js/sn-table';
</script>

README

CircleCI Maintainability Test Coverage

sn-table

table supernova for nebula.js

Installing

If you use npm: npm install @nebula.js/sn-table

Usage

import { embed } from '@nebula.js/stardust';
import table from '@nebula.js/sn-table';

// 'app' is an enigma app model
const nuked = embed(app, {
  types: [{ // register the table object
    name: 'table',
    load: () => Promise.resolve(table);
  }]
});

nuked.render({
  element,
  type: 'table',
});