From df1857e17ad28fa710b2bd7d4d5710d7cdb27e69 Mon Sep 17 00:00:00 2001 From: monokkai Date: Sun, 4 Jan 2026 19:16:21 +0100 Subject: [PATCH] Fix quotes in README example for consistency --- 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.