globocom/megadraft-table-plugin

View on GitHub
src/plugin.js

Summary

Maintainability
A
0 mins
Test Coverage
/*
 * Copyright (c) 2017, Globo.com <https://github.com/globocom/megadraft-table-plugin>
 *
 * License: MIT
 */

import Button from "./Button";
import TableBlock from "./Block";
import constants from "./constants";


export default {
  title: "Tabela",
  type: constants.PLUGIN_TYPE,
  buttonComponent: Button,
  blockComponent: TableBlock,
  options: {
    displayOptions: [],
    defaultDisplay: null
  }
};