mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 08:24:55 +00:00
changes to grocery, todos
This commit is contained in:
22
components/pages/main/WelcomeSplash.tsx
Normal file
22
components/pages/main/WelcomeSplash.tsx
Normal file
@ -0,0 +1,22 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user