UNPKG

react-native-tflite-classification

Version:

Run TensorFlow Lite models in React Native Android apps

20 lines (16 loc) 343 B
import * as React from 'react'; import { StyleSheet, View, Text } from 'react-native'; import ModelUse from './ModelUse'; export default function App() { return ( <View style={styles.container}> <ModelUse /> </View> ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', }, });