SYNC-HP用のサンプル
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

7 lines
295B

  1. import {Guitar} from "../type/guitars";
  2. export const fetchGuitars = async (): Promise<Guitar[]> => {
  3. const response = await fetch(`${process.env.NEXT_PUBLIC_STRAPI_URL}/api/guitars?populate=*`)
  4. const guitars:Guitar[] =await response.json().then((json) => json.data)
  5. return guitars
  6. }