Advertisement
Guest User

Untitled

a guest
May 29th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import React, { Component } from 'react';
  2. import {
  3. AppRegistry,
  4. StyleSheet,
  5. Text,
  6. Image,
  7. Navigator,
  8. View
  9. } from 'react-native';
  10.  
  11. var LessonList = React.createClass({
  12. getInitialState: function() {
  13. return {
  14. meow:'MeowMeow',
  15. };
  16. },
  17. render:function(){
  18. return(
  19. <Text>
  20. Keep Calm and Meow On !!!
  21. </Text>
  22. );
  23. }
  24. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement