14 lines
412 B
TypeScript
14 lines
412 B
TypeScript
import LoadingIP from '@/assets/icons/svg/loadingIP.svg';
|
|
import { View } from 'react-native';
|
|
|
|
export default function LoadingScreen() {
|
|
return (
|
|
<View className="flex-1 bg-white justify-center items-center p-5">
|
|
<View className="items-center">
|
|
<LoadingIP />
|
|
<View className="text-[#AC7E35]">Loading...</View>
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|