X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fapp.js;h=f5614c4efcee05e861da3ae9ec17b446b275035f;hb=9aca4f1a99af65dc988d2f66e122e25456a4efd9;hp=47b77032002b0fb66f064bb26f3502ae191c4bcf;hpb=78ee3a45427e1227013773b2a1c19fc1ee0efc12;p=alttp.git diff --git a/resources/js/app.js b/resources/js/app.js index 47b7703..f5614c4 100644 --- a/resources/js/app.js +++ b/resources/js/app.js @@ -18,6 +18,8 @@ toastr.options.positionClass = 'toast-bottom-right'; * or customize the JavaScript scaffolding to fit your unique needs. */ -import App from './components/App'; +import App from './components/app'; -ReactDOM.render(, document.getElementById('react-root')); +if (document.getElementById('react-root')) { + ReactDOM.render(, document.getElementById('react-root')); +}