From ba2907b3fa5e0422d2062824b605f53c4be4a99c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9E=A5=EB=8F=99=ED=98=84?= <54137044+ww8007@users.noreply.github.com> Date: Thu, 12 May 2022 01:34:04 +0900 Subject: [PATCH] fix: Fix remove not used things --- src/screens/Home.tsx | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/src/screens/Home.tsx b/src/screens/Home.tsx index 4e82ca3..63987e1 100644 --- a/src/screens/Home.tsx +++ b/src/screens/Home.tsx @@ -1,18 +1,8 @@ /* eslint-disable react-hooks/exhaustive-deps */ import React, { useState, useCallback, useRef, useEffect } from 'react'; -import { - StyleSheet, - FlatList, - ScrollView, - Platform, - RefreshControl -} from 'react-native'; -import { - useNavigation, - DrawerActions, - useTheme -} from '@react-navigation/native'; -import Constants from 'expo-constants'; +import { StyleSheet, FlatList, ScrollView, RefreshControl } from 'react-native'; +import { useNavigation, DrawerActions } from '@react-navigation/native'; + import * as Notifications from 'expo-notifications'; // prettier-ignore import {SafeAreaView, View, NavigationHeader, MaterialCommunityIcon as Icon, TouchableView, Text, MaterialIcon} from '../theme'; @@ -20,8 +10,7 @@ import { Buttons, ModalCalendar, ModalSetting, - ModalUpdate, - Spinner + ModalUpdate } from '../components'; import type { LeftRightNavigationMethods } from '../components';