diff options
Diffstat (limited to 'src/views/App.js')
| -rw-r--r-- | src/views/App.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/views/App.js b/src/views/App.js index 1a3ca42..0458d1a 100644 --- a/src/views/App.js +++ b/src/views/App.js @@ -8,6 +8,7 @@ import { MTLLoader, OBJLoader } from "@hbis/three-obj-mtl-loader"; import Graph from "./Graph.js"; import Intro from "./Intro.js"; +import LandscapeWarning from "./LandscapeWarning.js"; export default function App() { const [db, setDb] = useState(null); @@ -27,6 +28,7 @@ export default function App() { <> {intro && <Intro onComplete={closeIntro} />} {!intro && db && <Graph db={db} />} + <LandscapeWarning /> </> ); } |
