From 940d687cd7afcb3831025c4892b58c9a99e3aab7 Mon Sep 17 00:00:00 2001 From: Abdulaziz Ghuloum Date: Sun, 24 Nov 2024 12:49:37 +0300 Subject: [PATCH] minor changes --- src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index eecc14d..2d92273 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -167,7 +167,7 @@ function Example({ parser, code, onChange }: ExampleProps) {
-
+
@@ -178,7 +178,7 @@ function Example({ parser, code, onChange }: ExampleProps) { function Expander() { const [parser, set_parser] = useState(null); const [sample, setSample] = useState( - localStorage.getItem("sample_program") ?? "console.log('hello world!');", + localStorage.getItem("sample_program") ?? "const foo = (x) => x;\nfoo(12);\n", ); useEffect(() => { load_parser({