"use client"; import { useState } from "react"; import { saveUser } from "./action"; import IdComponent from "./IdComponent"; export default function Page() { const [idList, setIdList] = useState([]); async function submit() { let rs = await saveUser(idList); alert(`อัพเดทสำเร็จ ${rs.changes} คน`); } return (
setIdList(cids)} />

Total: {idList.length}{" "}

); }