react-server675fbba4
react-serverfilestestfixtureshttp-headers.jsx
test/fixtures/http-headers.jsxjsx218 B8a6d1935
import { headers } from "@lazarv/react-server";

export default function HttpHeadersPage() {
  headers({
    "x-custom-header": "custom-value",
    "x-another-header": "another-value",
  });
  return <p>Headers</p>;
}