Scribe.js/asr/viewer/Bootstrap.jsx

11 lines
309 B
React
Raw Normal View History

2016-01-22 08:22:11 -06:00
import App from './components/App.jsx'
import React from 'react'
import MongoDB from './libs/MongoDB'
import { render } from 'react-dom'
const db = new MongoDB();
db.init()
.then(db=>window.db = db)
.then(()=>db.addCollection('Entry'))
.then(()=>render(<App />, document.getElementById('app')));