"use server"; import db from "../lib/db"; export async function testFn(lol: any) { console.log({ lol }); return "lmao"; } export async function testLogin(state: number, formdata: FormData) { return state + 9; } // export async function testLogin({ // name, // creds, // }: { // name: string; // creds: string; // }) { // const res1 = db.loginUser(name, creds); // console.log({ res1 }); // return res1; // // const res = db.addUser(name, creds); // // console.log({ res }); // // return res; // }