Skip to content

Instantly share code, notes, and snippets.

@lrlineroa
Created July 4, 2019 00:56
Show Gist options
  • Save lrlineroa/a0970ff4555edcafc8ea6ef03e6dab0d to your computer and use it in GitHub Desktop.
Save lrlineroa/a0970ff4555edcafc8ea6ef03e6dab0d to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import { View,Text } from 'react-native';
class Training extends Component {
constructor(props) {
super(props);
this.state = { }
}
render() {
return ( <View>
<Text>
Entrenamiento
</Text>
</View> );
}
}
export default Training;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment