// Export import "bootstrap"; import "bootstrap/dist/css/bootstrap.css"; import "./app/styles/ampache.css"; // Handle app init import React from "react"; import { render } from "react-dom"; import { hashHistory } from "react-router"; import { syncHistoryWithStore } from "react-router-redux"; import Root from "./app/containers/Root"; import configureStore from "./app/store/configureStore"; const store = configureStore(); const history = syncHistoryWithStore(hashHistory, store); render( , document.getElementById("root") );