react-server675fbba4
react-serverfilestestfixtureshtml-client-only.jsx
test/fixtures/html-client-only.jsxjsx290 B884d30d4
import { ClientOnly } from "@lazarv/react-server/client";

import Counter from "./counter.jsx";

export default function SinglePageApplication() {
  return (
    <html lang="en">
      <body>
        <ClientOnly>
          <Counter />
        </ClientOnly>
      </body>
    </html>
  );
}