選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

strapi.ts 223B

12345678
  1. export const fetchGuiters = async () => {
  2. const response = await fetch(
  3. `${process.env.NEXT_PUBLIC_STRAPI_URL}/api/guiters?populate=*`
  4. )
  5. const jsonResponse = await response.json()
  6. return jsonResponse
  7. }