๐Ÿ“ฆ cloudflare / vinext

๐Ÿ“„ client-only-widget.tsx ยท 15 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15"use client";

import "client-only";

// This component imports "client-only" which ensures it is never
// accidentally imported in a Server Component.

export default function ClientOnlyWidget() {
  return (
    <div data-testid="client-only-widget">
      Client Only Widget (rendered in browser)
    </div>
  );
}