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
|
|
|
|
2018-11-18 17:37:06 +00:00
|
|
|
module.exports = function (mount) {
|
2018-11-18 22:32:55 +00:00
|
|
|
ReactDOM.render(<App />, mount);
|
2016-01-26 10:44:34 +00:00
|
|
|
};
|
2016-04-17 14:37:50 +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"
|
2018-11-18 17:37:06 +00:00
|
|
|
}
|