This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Suspense } from "react" | |
| import { RecoilRoot } from "recoil" | |
| import TimelineMap from "./components/map/TimelineMap" | |
| import TimeTravelButtons from "./components/time/TimeTravelButtons" | |
| import TimeTravelSlider from "./components/time/TimeTravelSlider" | |
| const App = () => { | |
| return ( | |
| <RecoilRoot> | |
| <Suspense fallback="Loading..."> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Suspense } from "react" | |
| import { RecoilRoot } from "recoil" | |
| import TimelineMap from "./components/map/TimelineMap" | |
| import TimeTravelButtons from "./components/time/TimeTravelButtons" | |
| import TimeTravelSlider from "./components/time/TimeTravelSlider" | |
| import CurrentStatSelect from "./components/stats/CurrentStatSelect" | |
| const App = () => { | |
| return ( | |
| <RecoilRoot> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p class="text-teal-500">Tailwind is working</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div> | |
| <p>Test SCSS</p> | |
| </div> | |
| <style lang="scss"> | |
| div { | |
| p { | |
| color: red; | |
| } | |
| } |
OlderNewer