xxxxxxxxxx
"Fetch Request": {
"prefix": "doFetch",
"body": [
"const fetchData = async () => {",
"const response = await fetch(`$API`);",
"const data = await response.json();",
"set$Hook(data);",
"}",
"fetchData()"
],
"description": "Create Fetch with Async/Await"