Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created April 22, 2024 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PaulieScanlon/eec1675ae608262cc289825ef4f596bc to your computer and use it in GitHub Desktop.
Save PaulieScanlon/eec1675ae608262cc289825ef4f596bc to your computer and use it in GitHub Desktop.
Example of read only component
// src/components/primitive-read-only-component.tsx
'use client';
import { useAtom } from 'jotai';
import { countAtom } from '../state';
export const ReadOnlyComponent = () => {
const [count] = useAtom(countAtom);
return <div>{count}</div>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment