import { Avatar, Button, Grid, Stack } from '@mui/material' import { Container } from '@mui/system' import { withProtection } from '../hocs' import { BackButton } from '../components' export const UserPage = withProtection(() => { const currentUser = { name: 'Петя', avatarPath: '', about: '', } return (

{currentUser?.name}

{currentUser?.about}

) })