Files
weave-scope/client/app/scripts/main.js
Simon Howe ac5d258378 Fixes scope working under a path
- Adds proxy server for easy testing of scope under a path.
2016-02-18 14:17:51 +01:00

10 lines
226 B
JavaScript

require('font-awesome-webpack');
require('../styles/main.less');
import React from 'react';
import ReactDOM from 'react-dom';
import App from './components/app.js';
ReactDOM.render(<App />, document.getElementById('app'));