mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-17 21:10:43 +00:00
10 lines
299 B
TypeScript
10 lines
299 B
TypeScript
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// Licensed under the MIT License.
|
||
|
|
|
||
|
|
import{AppRegistry} from 'react-native';
|
||
|
|
import App from './src/App';
|
||
|
|
import{name as appName} from './app.json';
|
||
|
|
|
||
|
|
// Register React Native example app
|
||
|
|
AppRegistry.registerComponent(appName, () => App);
|