Get app working against deployed service

This commit is contained in:
John Lyon-Smith
2018-04-08 21:25:17 -07:00
parent d674f5e7eb
commit ee836def93
9 changed files with 141 additions and 86 deletions

View File

@@ -4,6 +4,7 @@ import PropTypes from "prop-types"
import { View, Text, TouchableOpacity } from "react-native"
import { Icon, OptionStrip } from "../ui"
import autobind from "autobind-decorator"
import { api } from "../API"
export class ApiModal extends Component {
static propTypes = {
@@ -14,7 +15,7 @@ export class ApiModal extends Component {
constructor(props) {
super(props)
this.state = {
value: null,
value: api.backend,
}
}