UNPKG

meteor-interface

Version:

Simple Content Management System to generate your administration interface for Meteor and React.

13 lines (10 loc) 358 B
const Interface = require('./build/router'); const createInterface = require('./build/lib/createInterface'); const configuration = require('./build/lib/configuration'); if(Meteor.isServer){ require('./build/server/index'); } else { require('./build/client/index'); } module.exports = { configuration, createInterface }; module.exports = Interface;