Commit 8d43741d authored by Pramodh Rajapakse's avatar Pramodh Rajapakse

removed unused imports

parent 0e9b47fc
...@@ -3,19 +3,19 @@ ...@@ -3,19 +3,19 @@
// Import React and Component // Import React and Component
import React from 'react'; import React from 'react';
import {StyleSheet, View, Text, SafeAreaView, TouchableOpacity, TextInput, ImageBackground} from 'react-native'; import {StyleSheet} from 'react-native';
import { Formik } from 'formik';
import { FontAwesome } from '@expo/vector-icons';
import { MaterialCommunityIcons } from '@expo/vector-icons';
import { AppButton } from "../components/button.component"; import { AppButton } from "../components/button.component";
import { AppTextInput } from '../components/text_input.component';
import { AppContainer } from '../container/container';
const HomeAuctionScreen = ({navigation}) => { const HomeAuctionScreen = ({navigation}) => {
return ( return (
<SafeAreaView style={{flex: 1, color: 'yellow'}}> <AppContainer>
<AppTextInput/>
<AppButton <AppButton
label='Test' label='Test'
/> />
</SafeAreaView> </AppContainer>
); );
}; };
export default HomeAuctionScreen; export default HomeAuctionScreen;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment