Skip to content

Commit

Permalink
chore: retore apps/App.tsx (#2506)
Browse files Browse the repository at this point in the history
## Description

Accidentally committed changes to apps/App.tsx

## Changes

Restore old contents.

## Test code and steps to reproduce

CI

## Checklist

- [ ] Ensured that CI passes
  • Loading branch information
kkafar authored Nov 14, 2024
1 parent 4d9eb76 commit 976dd89
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/App.tsx
Original file line number Diff line number Diff line change
@@ -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 <Example />;
return <Test.TestFormSheet />;
return <Example />;
// return <Test.Test42 />;
}

0 comments on commit 976dd89

Please sign in to comment.