"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() { await saveUser(idList); alert("อัพเดทสำเร็จ"); } return (
setIdList(cids)} />

Total: {idList.length}{" "}

); }