From b4ae93364839b70af043f8043fd794d38e08e5c7 Mon Sep 17 00:00:00 2001 From: Uladzislau Hramyka Date: Sat, 7 Jan 2023 22:57:29 +0300 Subject: [PATCH] Add missing X in starter Square component (#5445) This change adds missing "X" character for starter Square component showcase in "Overview" section --- 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 b4d56f0c..4dcfddcd 100644 --- a/beta/src/content/learn/tutorial-tic-tac-toe.md +++ b/beta/src/content/learn/tutorial-tic-tac-toe.md @@ -291,7 +291,7 @@ The `App.js` file should be selected in the _Files_ section. The contents of tha ```jsx export default function Square() { - return ; + return ; } ```