From 976dd89ae43f8bb6b5e94a3b99c1673c4988f151 Mon Sep 17 00:00:00 2001 From: Kacper Kafara Date: Thu, 14 Nov 2024 17:41:24 +0100 Subject: [PATCH] chore: retore apps/App.tsx (#2506) ## Description Accidentally committed changes to apps/App.tsx ## Changes Restore old contents. ## Test code and steps to reproduce CI ## Checklist - [ ] Ensured that CI passes --- apps/App.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/App.tsx b/apps/App.tsx index 7cb801510c..23a9af9c45 100644 --- a/apps/App.tsx +++ b/apps/App.tsx @@ -1,11 +1,11 @@ import React from 'react'; import { enableFreeze } from 'react-native-screens'; -// import Example from './Example'; -import * as Test from './src/tests'; +import Example from './Example'; +// import * as Test from './src/tests'; enableFreeze(true); export default function App() { - // return ; - return ; + return ; + // return ; }