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';