import { useSession } from "@/ctx"; import React from "react"; import { Image, Text, View } from "react-native"; export default function HeaderProfileComponent() { const { session } = useSession(); return ( PrĂȘt pour t'entrainer ? {session?.name} ); }