Created
February 12, 2016 02:21
-
-
Save spencercarli/13d58de868956cbafa87 to your computer and use it in GitHub Desktop.
Easily Connect React Native to a Meteor Server - Connecting React Native App to Meteor - index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { | |
View, | |
Text, | |
StyleSheet | |
} from 'react-native'; | |
import Button from './button'; | |
import DDPClient from 'ddp-client'; | |
let ddpClient = new DDPClient(); | |
export default React.createClass({ | |
/* | |
* Removed from snippet for brevity | |
*/ | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment