Bug fix for <App /> vs. <Counter /> (#24972)

This commit is contained in:
davidrenne 2022-07-22 11:24:49 -04:00 committed by GitHub
parent 6b28bc9c5a
commit 49f8254d6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ function Counter() {
} }
const root = createRoot(document.getElementById('root')); const root = createRoot(document.getElementById('root'));
root.render(<App />); root.render(<Counter />);
``` ```
## Documentation ## Documentation