Skip to content

Instantly share code, notes, and snippets.

@igmoweb
Created July 13, 2022 14:04
Show Gist options
  • Save igmoweb/01787482729e3368caf870d873eff75e to your computer and use it in GitHub Desktop.
Save igmoweb/01787482729e3368caf870d873eff75e to your computer and use it in GitHub Desktop.
const Home: NextPage = () => {
const { data, loading } = useQuery(GET_PRODUCTS)
return loading ? 'Loading...' : <ProductList products={data.getAllProducts.data} /> ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment