Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import React, { Component } from "react";
  2. import { Text, View } from "react-native";
  3.  
  4. interface Props {
  5.  
  6. }
  7.  
  8. interface State {
  9.  
  10. }
  11.  
  12. class App extends Component<Props, State> {
  13. render() {
  14. return (
  15. <View>
  16. <Text>Hi, App Component!</Text>
  17. </View>
  18. );
  19. }
  20. }
  21.  
  22. export default App;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement