зеркало из https://github.com/mozilla/treeherder.git
16 строки
383 B
JavaScript
16 строки
383 B
JavaScript
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
|
|
// Vendor Styles
|
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
|
|
|
// Treeherder Styles
|
|
import '../css/treeherder-navbar.css';
|
|
import '../css/treeherder-job-buttons.css';
|
|
import '../css/treeherder-notifications.css';
|
|
import './pushhealth.css';
|
|
|
|
import App from './App';
|
|
|
|
render(<App />, document.getElementById('root'));
|