# page atoms

Source: docs/source/exhibits/json/page-atoms.ts

```ts
import { atomFamily } from "atom.io"

import type { PageKey } from "./page-key.ts"

type Page = {
	text: string
}

const pageAtoms = atomFamily<Page, PageKey>({
	key: `page`,
	default: { text: `` },
})
```
