basis-stack/basis

View on GitHub
src/client/modules/shell/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import { routeTypes } from 'basis-client';

import reducers from './reducers';
import Shell from './components/shell';

export default {

  actions: undefined,
  initialise: () => ({

    key: 'shell',
    route: {
      path: '/',
      component: Shell,
      type: routeTypes.shellHub
    },
    reducers
  })
};