File: src\R.XWindow.js
/** * TODO */ module.exports = function(R) { var XWindow = { createPlugin: function createPlugin(storeName, dispatcherName) { return R.App.createPlugin({ displayName: "XWindow", installInClient: function installInClient(flux, window) { }, installInServer: function installInServer(flux, req) { }, }); }, }; return XWindow; };