Files
react-native-svg/tests-example/index.js
Jakub Grzywacz e87d22f49e chore: cleanup example apps (#2408)
# Summary

* Restructure example apps to one entry-point in `./apps/index.tsx`
where we can change the import between `./examples` and
`./test-examples`
* update pod files
2024-08-13 13:57:31 +02:00

10 lines
203 B
JavaScript

/**
* @format
*/
import { AppRegistry } from 'react-native';
import App from '../apps/test-examples';
import { name as appName } from './app.json';
AppRegistry.registerComponent(appName, () => App);