clean up database model setting

This commit is contained in:
Eric Hulburd
2016-01-31 17:49:02 -06:00
parent c0efde030d
commit 51a0e40f55
7 changed files with 114 additions and 76 deletions

15
lib/relay/app.relay.js Normal file
View File

@@ -0,0 +1,15 @@
import 'babel-polyfill';
import App from './components/App';
import AppHomeRoute from './routes/AppHomeRoute';
import React from 'react';
import ReactDOM from 'react-dom';
import Relay from 'react-relay';
ReactDOM.render(
<Relay.RootContainer
Component={App}
route={new AppHomeRoute()}
/>,
document.getElementById('root')
);