Skip to content

Instantly share code, notes, and snippets.

@skflowne
Created August 14, 2020 14:39
Show Gist options
  • Save skflowne/fd7f2c9c0afb51d97943a4c4a631333e to your computer and use it in GitHub Desktop.
Save skflowne/fd7f2c9c0afb51d97943a4c4a631333e to your computer and use it in GitHub Desktop.
import React, { Suspense } from "react"
import { RecoilRoot } from "recoil"
import TimelineMap from "./components/map/TimelineMap"
const App = () => {
return (
<RecoilRoot>
<Suspense fallback="Loading...">
<TimelineMap />
</Suspense>
</RecoilRoot>
)
}
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment