mirror of
https://github.com/urosran/cally.git
synced 2025-07-16 01:56:16 +00:00
changes to grocery, todos
This commit is contained in:
@ -2,14 +2,21 @@ import { View, Text } from "react-native-ui-lib";
|
||||
import React from "react";
|
||||
import { useAuthContext } from "@/contexts/AuthContext";
|
||||
|
||||
const HeaderTemplate = (props: { message: string }) => {
|
||||
const HeaderTemplate = (props: { message: string; isWelcome: boolean; children?: React.ReactNode }) => {
|
||||
const { user, profileData } = useAuthContext();
|
||||
return (
|
||||
<View row centerV padding-25>
|
||||
<View backgroundColor="pink" height={65} width={65} style={{borderRadius: 22}} marginR-20 />
|
||||
<View
|
||||
backgroundColor="pink"
|
||||
height={65}
|
||||
width={65}
|
||||
style={{ borderRadius: 22 }}
|
||||
marginR-20
|
||||
/>
|
||||
<View>
|
||||
<Text text70L>Welcome, {user?.email}!</Text>
|
||||
{props.isWelcome && <Text text70L>Welcome, {user?.email}!</Text>}
|
||||
<Text text70BL>{props.message}</Text>
|
||||
{props.children && <View>{props.children}</View>}
|
||||
</View>
|
||||
</View>
|
||||
);
|
||||
|
Reference in New Issue
Block a user