updated app to react-native

This commit is contained in:
0xturboblitz
2023-07-25 20:01:14 +02:00
parent 519e738001
commit f013fa6941
122 changed files with 29722 additions and 3265 deletions

View File

@@ -0,0 +1,17 @@
/**
* @format
*/
import 'react-native';
import React from 'react';
import App from '../App';
// Note: import explicitly to use the types shiped with jest.
import {it} from '@jest/globals';
// Note: test renderer must be required after react-native.
import renderer from 'react-test-renderer';
it('renders correctly', () => {
renderer.create(<App />);
});