next-learn
next-learn copied to clipboard
await does not work
const HomePage = () => { const wixClient = useContext(WixClientContext);
useEffect(() => { const getProducts = async () => { const res = await wixClient.products.queryProducts().find();
};
getProducts();
}, [wixClient]);