From 4ccbf50e80ac2f50f8addf16250cb7ff7aa6b3d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Santos?= Date: Fri, 10 Mar 2023 19:01:18 +0100 Subject: [PATCH] add React to import statement --- beta/src/content/learn/tutorial-tic-tac-toe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beta/src/content/learn/tutorial-tic-tac-toe.md b/beta/src/content/learn/tutorial-tic-tac-toe.md index d0c6f759873..d44648f23e5 100644 --- a/beta/src/content/learn/tutorial-tic-tac-toe.md +++ b/beta/src/content/learn/tutorial-tic-tac-toe.md @@ -330,7 +330,7 @@ Click on the file labeled `styles.css` in the _Files_ section of CodeSandbox. Th Click on the file labeled `index.js` in the _Files_ section of CodeSandbox. You won't be editing this file during the tutorial but it is the bridge between the component you created in the `App.js` file and the web browser. ```jsx -import {StrictMode} from 'react'; +import React, {StrictMode} from 'react'; import {createRoot} from 'react-dom/client'; import './styles.css';