Files
weave-scope/client/app/scripts/main.js
David Kaltschmidt 531068179c High contrast mode switch
* added button to the bottom right to switch to higher contrast,
* suitable for projectors
* increased contrast between background and text colors
* thicker strokes around chart elements
* ensure yellow details panel backgrounds are darker
2016-02-15 16:20:40 +00:00

10 lines
234 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 base="" />, document.getElementById('app'));