ensl_gathers/app/javascripts/app.js

26 lines
600 B
JavaScript
Raw Normal View History

2016-01-26 10:44:34 +00:00
const React = require("react");
2016-01-22 10:12:23 +00:00
const ReactDOM = require("react-dom");
2016-01-26 10:44:34 +00:00
const App = require("javascripts/components/main");
2016-01-22 21:39:03 +00:00
module.exports = function (mount) {
ReactDOM.render(<App />, mount);
2016-01-26 10:44:34 +00:00
};
toastr.options = {
"closeButton": true,
"debug": false,
"newestOnTop": false,
"progressBar": false,
"positionClass": "toast-top-center",
"preventDuplicates": false,
"onclick": null,
"showDuration": "300",
"hideDuration": "1000",
"timeOut": "5000",
"extendedTimeOut": "1000",
"showEasing": "swing",
"hideEasing": "linear",
"showMethod": "fadeIn",
"hideMethod": "fadeOut"
}