import * as React from 'react'; import { Text, View, StyleSheet } from 'react-native'; import LidoAppText from '../LidoAppText/index.web'; const styles = StyleSheet.create({ box: { padding: 10 }, text: { fontWeight: 'bold' } }); class App extends React.Component { render() { return ( Hello, world! ); } } export default App;