Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
247 B
2
Indexable
Never
const fetchRecipe = async () => {
        try{
            const recipeId = 716429;
            const data = await getRecipe(recipeId);
            setRecipe(data);
        } catch (error){
            console.error(error);
        }
    }