react-server675fbba4
react-serverfilestestfixturesclient-only.jsx
test/fixtures/client-only.jsxjsx218 B20632b7d
import { ClientOnly } from "@lazarv/react-server/client";

import Counter from "./counter.jsx";

export default function SinglePageApplication() {
  return (
    <ClientOnly>
      <Counter />
    </ClientOnly>
  );
}