Skip to content

Commit

Permalink
docs: fix typo (#2766)
Browse files Browse the repository at this point in the history
ageAtom -> age
  • Loading branch information
jaycho46 authored Oct 11, 2024
1 parent f51553d commit 6f7551c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guides/performance.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Dont's:
```jsx
const Profile = () => {
const [name] = useAtom(nameAtom)
const [ageAtom] = useAtom(ageAtom)
const [age] = useAtom(ageAtom)
return (
<>
<div>{name}</div>
Expand Down

0 comments on commit 6f7551c

Please sign in to comment.