import React, { useState } from 'react' import { useSnapshot } from 'valtio' import { appState } from '~utils/appState' import './index.scss' // Props interface Props { username: string gender: boolean } const ProfileHeader = (props: Props) => { return (

{props.username}

Gran
) } export default ProfileHeader