Guest User

Untitled

a guest
Jun 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. import React, {Component} from 'react';
  2. import {View, Text, StyleSheet,} from 'react-native';
  3.  
  4. class ComponentName extends Component {
  5. constructor(props) {
  6. super(props)
  7. }
  8.  
  9. render = () => {
  10. return (
  11. <View>
  12. <Text>Chemistry Note</Text>
  13. <View style={{width: 100, height: 100, backgroundColor: 'red'}}/>
  14. </View>
  15. );
  16.  
  17. }
  18. }
  19.  
  20. export default ComponentName;
Add Comment
Please, Sign In to add comment