From 9a9d8ed406ed301eab64a82d85e437f9b28a183e Mon Sep 17 00:00:00 2001 From: Tomek Zawadzki Date: Wed, 4 Dec 2024 11:33:12 +0100 Subject: [PATCH] Restore original App.tsx --- example/src/App.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/example/src/App.tsx b/example/src/App.tsx index ecd672ca..77d5e421 100644 --- a/example/src/App.tsx +++ b/example/src/App.tsx @@ -16,9 +16,7 @@ import {PlatformInfo} from './PlatformInfo'; console.log(Animated); export default function App() { - const [value, setValue] = React.useState( - ['# Hello world', '# Hello world', '# Hello world'].join('\n'), - ); + const [value, setValue] = React.useState(TEST_CONST.EXAMPLE_CONTENT); const [textColorState, setTextColorState] = React.useState(false); const [linkColorState, setLinkColorState] = React.useState(false); const [textFontSizeState, setTextFontSizeState] = React.useState(false);