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