]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/app.js
add simple doors tracker
[alttp.git] / resources / js / app.js
index 47b77032002b0fb66f064bb26f3502ae191c4bcf..c2de14124e8f402b21889e4e2f05709d21007582 100644 (file)
@@ -18,6 +18,13 @@ toastr.options.positionClass = 'toast-bottom-right';
  * or customize the JavaScript scaffolding to fit your unique needs.
  */
 
-import App from './components/App';
+import AosApp from './components/aos/App';
+import App from './components/app';
 
-ReactDOM.render(<App />, document.getElementById('react-root'));
+if (document.getElementById('aos-root')) {
+       ReactDOM.render(<AosApp />, document.getElementById('aos-root'));
+}
+
+if (document.getElementById('react-root')) {
+       ReactDOM.render(<App />, document.getElementById('react-root'));
+}