Skip to content

Instantly share code, notes, and snippets.

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