Skip to content

Commit

Permalink
Implemented attendees search
Browse files Browse the repository at this point in the history
  • Loading branch information
Florentijn committed May 19, 2018
1 parent 87b0483 commit dcf87da
Show file tree
Hide file tree
Showing 10 changed files with 906 additions and 167 deletions.
14 changes: 12 additions & 2 deletions App.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import React from "react";
import { Asset, AppLoading, Font, Updates } from "expo";
import { Platform } from "react-native";
import { AsyncStorage, Alert, Platform, View } from "react-native";
import ApolloClient from "apollo-boost";
import { ApolloProvider } from "react-apollo";
import { Ionicons } from "@expo/vector-icons";
import { loadSavedTalksAsync } from "./src/utils/storage";
import { SafeAreaView } from "react-navigation";
Expand All @@ -9,6 +11,10 @@ if (Platform.OS === "android") {
SafeAreaView.setStatusBarHeight(0);
}

const client = new ApolloClient({
uri: "https://www.react-europe.org/gql"
});

import Navigation from "./src/Navigation";

export default class App extends React.Component {
Expand Down Expand Up @@ -84,6 +90,10 @@ export default class App extends React.Component {
);
}

return <Navigation />;
return (
<ApolloProvider client={client}>
<Navigation />
</ApolloProvider>
);
}
}
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,21 @@
"lint": "eslint . --ext .js --quiet"
},
"dependencies": {
"apollo-boost": "^0.1.6",
"crypto-js": "^3.1.9-1",
"expo": "^27.0.0",
"fbemitter": "^2.1.1",
"global": "^4.3.2",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"hoist-non-react-statics": "^2.3.1",
"lodash": "^4.17.4",
"moment": "2.21.0",
"moment-timezone": "^0.5.14",
"path": "^0.12.7",
"prettier": "^1.11.1",
"react": "16.3.1",
"react-apollo": "^2.1.4",
"react-native": "https://github.com/expo/react-native/archive/sdk-27.0.0.tar.gz",
"react-native-animatable": "^1.2.4",
"react-native-fade-in-image": "1.3.0",
Expand Down
Loading

0 comments on commit dcf87da

Please sign in to comment.