mirror of
https://github.com/urosran/cally.git
synced 2025-07-16 18:16:17 +00:00
19 lines
564 B
TypeScript
19 lines
564 B
TypeScript
import { View, Text } from "react-native-ui-lib";
|
|
import React from "react";
|
|
import { useAuthContext } from "@/contexts/AuthContext";
|
|
|
|
const HeaderTemplate = (props: { message: string }) => {
|
|
const { user, profileData } = useAuthContext();
|
|
return (
|
|
<View row centerV padding-25>
|
|
<View backgroundColor="pink" height={65} width={65} style={{borderRadius: 22}} marginR-20 />
|
|
<View>
|
|
<Text text70L>Welcome, {user?.email}!</Text>
|
|
<Text text70BL>{props.message}</Text>
|
|
</View>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default HeaderTemplate;
|