+
+ ```tsx
+ import { useProduct } from "@elasticpath/react-shopper-hooks"
+
+ export default function Products() {
+ const { data: product, isLoading } = useProduct()
+
+ return (
+
+ {isLoading && Loading...}
+ {product && {product.attributes.name}}
+
+ )
+ }
+ ```
+
+
+