mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-18 05:00:41 +00:00
# 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
10 lines
203 B
JavaScript
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);
|