Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
12345678 |
- export const fetchGuiters = async () => {
- const response = await fetch(
- `${process.env.NEXT_PUBLIC_STRAPI_URL}/api/guiters?populate=*`
- )
-
- const jsonResponse = await response.json()
- return jsonResponse
- }
|