Help with SQL commands to interact with a MySQL database
- Mac /usr/local/mysql/bin
- Windows /Program Files/MySQL/MySQL version/bin
- Xampp /xampp/mysql/bin
| import React, { useEffect, useState, useCallback } from "react"; | |
| import { | |
| ScrollView, | |
| StyleSheet, | |
| TouchableOpacity, | |
| Text, | |
| TextInput, | |
| View, | |
| Button, | |
| } from "react-native"; |
| import React, { useState, useEffect } from "react"; | |
| import { | |
| StyleSheet, | |
| Text, | |
| View, | |
| ActivityIndicator, | |
| Alert, | |
| Button, | |
| } from "react-native"; | |
| import * as Location from "expo-location"; |
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <style> | |
| body { | |
| margin: 0px; | |
| padding: 0px; | |
| } | |
| </style> | |
| </head> |
| [react-redux-typescript-guide](https://github.com/piotrwitek/react-redux-typescript-guide) | |
| [FAQ](http://redux.js.org/docs/FAQ.html) | |
| [Redux Actions in typescript](https://spin.atomicobject.com/2017/07/24/redux-action-pattern-typescript/) | |
| ```typescript | |
| export enum TypeKeys { | |
| INC = 'INC', | |
| DEC = 'DEC', | |
| OTHER_ACTION = '__any_other_action_type__' | |
| } |