Automatically organize imports
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
import React, { useState, useEffect } from "react";
|
||||
import auth, { FirebaseAuthTypes } from "@react-native-firebase/auth";
|
||||
import React, { useEffect, useState } from "react";
|
||||
import {
|
||||
Alert,
|
||||
Button,
|
||||
View,
|
||||
Keyboard,
|
||||
Text,
|
||||
TextInput,
|
||||
TouchableWithoutFeedback,
|
||||
Keyboard,
|
||||
View,
|
||||
} from "react-native";
|
||||
import auth, { FirebaseAuthTypes } from "@react-native-firebase/auth";
|
||||
|
||||
// This code is beginning of Auth Implementation - actual implementation will differ and involve more UI
|
||||
// Does not have a restart or proper handling of code confirmation, should only be used for obtaining token/testing
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import React from "react";
|
||||
import { View, StyleSheet } from "react-native";
|
||||
import { StyleSheet, View } from "react-native";
|
||||
import BarGraph from "../component/charts/bar-graph/bar-graph";
|
||||
import { graph_data_two_measures } from "../mock/charts/mock-data";
|
||||
|
||||
|
@@ -1,11 +1,11 @@
|
||||
import React, { useCallback, useState } from "react";
|
||||
import {
|
||||
View,
|
||||
TextInput,
|
||||
TouchableWithoutFeedback,
|
||||
Text,
|
||||
TouchableOpacity,
|
||||
Keyboard,
|
||||
Text,
|
||||
TextInput,
|
||||
TouchableOpacity,
|
||||
TouchableWithoutFeedback,
|
||||
View,
|
||||
} from "react-native";
|
||||
import DropDownPicker from "react-native-dropdown-picker";
|
||||
import { recordStyles as styles } from "./styles";
|
||||
|
Reference in New Issue
Block a user