From 6f7551c0f1fb1b5317ed195882c65bf7caf1850f Mon Sep 17 00:00:00 2001 From: Joonhyung Cho Date: Fri, 11 Oct 2024 17:11:46 +0900 Subject: [PATCH] docs: fix typo (#2766) ageAtom -> age --- docs/guides/performance.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/performance.mdx b/docs/guides/performance.mdx index bed9709eab..8a6d364e0f 100644 --- a/docs/guides/performance.mdx +++ b/docs/guides/performance.mdx @@ -55,7 +55,7 @@ Dont's: ```jsx const Profile = () => { const [name] = useAtom(nameAtom) - const [ageAtom] = useAtom(ageAtom) + const [age] = useAtom(ageAtom) return ( <>
{name}