ยฉ 2026 Hedgehog Software, LLC
const userId = getUserId(); return ( <form action={deleteUser(userId) method="post"> <button>Delete User</button> </form> );
export const deleteUser = action(async (userId: string) => { await auth.deleteAccount(userId); });