Automatically organize imports

This commit is contained in:
2024-02-03 20:30:00 -07:00
parent 2276605e6d
commit bfd96d9ccc
25 changed files with 71 additions and 67 deletions

View File

@@ -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

View File

@@ -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";

View File

@@ -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";