import { api } from "@minikura/api"; async function fetchData() { const response = await api.index.get(); return response; } export default async function Page() { const data = await fetchData(); return (

Hello React

{JSON.stringify(data, null, 2)}
); }