'use server'

export async function test(form: FormData) {
  const name = form.get('name')
  return name?.toString()
}