From 0cd558a9508f1ce37c586c850831cf022b642b2a Mon Sep 17 00:00:00 2001 From: monokkai Date: Sun, 4 Jan 2026 19:21:43 +0100 Subject: [PATCH] Fix inconsistent quote style in README example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 88f8e827b02..0db24b82d08 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ function HelloMessage({ name }) { } const root = createRoot(document.getElementById('container')); -root.render(); +root.render(); ``` This example will render "Hello Taylor" into a container on the page.