From e3acbe01a94d46ae2ead6455b2daa427ade396f3 Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Wed, 1 Jul 2015 15:14:10 -0700 Subject: [PATCH] initial entry points up --- client/index.js | 2 +- common/app/app-stream.jsx | 8 ++++---- common/app/index.js | 1 + server/boot/a-react.js | 5 ++++- 4 files changed, 10 insertions(+), 6 deletions(-) create mode 100644 common/app/index.js diff --git a/client/index.js b/client/index.js index 44516e9b0c..0de40272a4 100644 --- a/client/index.js +++ b/client/index.js @@ -2,7 +2,7 @@ import BrowserHistory from 'react-router/lib/BrowserHistory'; import debugFactory from 'debug'; import { Cat } from 'thundercats'; -import app$ from '../common/app/app$.jsx'; +import { app$ } from '../common/app'; const debug = debugFactory('fcc:client'); const DOMContianer = document.getElemenetById('#fCC'); diff --git a/common/app/app-stream.jsx b/common/app/app-stream.jsx index 90d0b3104d..23506e4d5f 100644 --- a/common/app/app-stream.jsx +++ b/common/app/app-stream.jsx @@ -3,13 +3,13 @@ import React from 'react'; import { Route, Router } from 'react-router'; // components -import App from './App.jsx'; -import Jobs from './routes/Jobs'; -import NotFound from './components/NotFound'; +import { App } from './App.jsx'; +import { Jobs } from './routes/Jobs'; +import { NotFound } from './components/NotFound'; const router$ = Rx.Observable.fromNodeCallback(Router.run, Router); -export const routes = ( +const routes = (