Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update Component Name
I noticed the `Home.js` component was actually named `Register` so I updated it :)

Thanks for your work on this repo! ❤️
  • Loading branch information
Shane Rogers committed Jan 20, 2016
commit fecbec2a863dd53def365f54d04b96d47abe6d3d
4 changes: 2 additions & 2 deletions Example/components/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var {View, Text, StyleSheet} = React;
var Button = require('react-native-button');
var Actions = require('react-native-router-flux').Actions;

class Register extends React.Component {
class Home extends React.Component {
render(){
return (
<View style={styles.container}>
Expand Down Expand Up @@ -35,4 +35,4 @@ var styles = StyleSheet.create({
},
});

module.exports = Register;
module.exports = Home;