"use client" import React from 'react' import PerChatCard from '../components/PerChatCard' import axios from 'axios' import data from '@/public/apiList.json' import Link from 'next/link' import ApiModal from '../components/ApiModal' const page = () => { // eslint-disable-next-line react-hooks/rules-of-hooks const [open, setOpen] = React.useState(false) // eslint-disable-next-line react-hooks/rules-of-hooks const [api, setData] = React.useState({}) return (<> {open && }

API Hub

{ data.map((data, index)=>{ return }) }
) } export default page