mirror of
https://github.com/urosran/cally.git
synced 2025-07-11 07:37:25 +00:00
23 lines
478 B
TypeScript
23 lines
478 B
TypeScript
import { Image } from "react-native";
|
|
import React from "react";
|
|
import { View, Text, Button } from "react-native-ui-lib";
|
|
|
|
const WelcomeSplash = () => {
|
|
return (
|
|
<View>
|
|
<Image
|
|
source={require("../../../assets/images/splash-clock.png")}
|
|
height={10}
|
|
width={10}
|
|
/>
|
|
<Button
|
|
label="Continue"
|
|
style={{ backgroundColor: "#fd1775" }}
|
|
onPress={() => {}}
|
|
/>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default WelcomeSplash;
|