You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
372 B
15 lines
372 B
// screens/HomeScreen.tsx
|
|
|
|
import React from 'react';
|
|
import { Image, View } from 'react-native';
|
|
|
|
const HomeScreen = () => {
|
|
return (
|
|
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
|
|
<Image source={require('../assets/logo.png')} style={{ width: 500, height: 500 }}/>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default HomeScreen;
|