From 29ba73239ae28403bac367f463cc4677ea821621 Mon Sep 17 00:00:00 2001 From: Sunhyoup Lee Date: Tue, 16 Jul 2024 12:32:49 +0900 Subject: [PATCH] docs: fix typo in devtools.mdx --- docs/api/utils/devtools.mdx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/api/utils/devtools.mdx b/docs/api/utils/devtools.mdx index 25fd690f..0f4caae9 100644 --- a/docs/api/utils/devtools.mdx +++ b/docs/api/utils/devtools.mdx @@ -27,8 +27,6 @@ The screenshot below shows how to use Redux DevTools to manipulate state. First #### Use it with vanilla JS -````jsx - Valtio is not tied to React, you can use it in vanillaJS. ```jsx @@ -40,7 +38,7 @@ subscribe(state, () => { console.log('state is mutated') const obj = snapshot(state) // A snapshot is an immutable object }) -```` +``` #### Use it with TypeScript