/* @aztlan/generator-front 0.4.0 */ import * as React from 'react' /* import { defineMessages, useIntl, FormattedMessage, } from 'react-intl' */ import { ViewerProfile } from '@aztlan/ui' /* const m = defineMessages({ title: { // id: `${messagesPrefix}.title`, defaultMessage: 'Homepage', }, welcome: { description: 'Message to greet the user.', defaultMessage: 'Welcome to the site, {name}!!!', }, }) */ function Profile({ FRAGMENT, mock, }: { FRAGMENT: any; mock: boolean }) { return ( <>

Welcome to the profile page

{!mock && } ) } export default Profile