"use client"; import { testFn, testLogin } from "@/actions/test"; import { useState } from "react"; export const Counter = () => { const [count, setCount] = useState(0); const handleIncrement = async () => { setCount((c) => c + 1); const res = await testFn("rofl"); console.log({ res }); const oof = testLogin({ name: "yago", creds: "xd" }); }; return (
Count: {count}
); };