FredericHeem/starhackit

View on GitHub
client/src/components/restTable/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import restTableComponent from "./restTableComponent";
import RestTableStore from "./restTableStore";

export default function(context, { getData, columns }) {
  const store = RestTableStore(context, { getData });
  return {
    store,
    view: restTableComponent(context, store, { columns })
  };
}