Reactjs – How to pass a ref to an server action?
I'm using server actions to process data submitted with a form, and I want to clear the form into the action. But the action does not receive the reference. My action: // actions/createVm.js 'use server' export async function createVm(FormData) {…