SYNC-HP用のサンプル
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 2 años
1234567
  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. }