mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-20 11:28:47 +08:00
22 lines
469 B
JavaScript
22 lines
469 B
JavaScript
// jshint esversion: 6
|
|
/* eslint-disable no-console */
|
|
import React from "react";
|
|
import ReactDOM from "react-dom";
|
|
import { Provider } from "react-redux";
|
|
import { FocusStyleManager } from "@blueprintjs/core";
|
|
|
|
import "./index.css";
|
|
|
|
/* our code */
|
|
import App from "./components/app";
|
|
import store from "./reducers";
|
|
|
|
FocusStyleManager.onlyShowFocusOnTabs();
|
|
|
|
ReactDOM.render(
|
|
<Provider store={store}>
|
|
<App />
|
|
</Provider>,
|
|
document.getElementById("root")
|
|
);
|