react-server675fbba4
react-serverfilesexamplesreact-routersrcroutesdestroy.jsx
examples/react-router/src/routes/destroy.jsxjsx202 B82d4f7f4
import { redirect } from "react-router-dom";

import { deleteContact } from "../contacts";

export async function action({ params }) {
  await deleteContact(params.contactId);
  return redirect("/");
}