Last active
August 18, 2020 13:53
-
-
Save skflowne/7e7495abfe592c04004450440dbaba26 to your computer and use it in GitHub Desktop.
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 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