/* @aztlan/generator-front 0.4.0 */ import * as React from 'react' import { defineMessages, useIntl, } from 'react-intl' import { SimpleForm, addGraphQLOptions, withErrorHandling, addGraphQLValidation, } from '@aztlan/ui' import { graphql } from 'relay-runtime' import { MainTemplate as Template } from '../templates/index.js' const m = defineMessages({ title:{ // id: `${messagesPrefix}.title`, defaultMessage:'DebugFormpage', }, welcome:{ description :'Message to greet the user.', defaultMessage:'Welcome to the site, {name}!!!', }, }) function DebugForm({ FRUITS_OPTIONS_QUERY, USERNAME_VALIDATION_QUERY, }: { FRUITS_OPTIONS_QUERY :any; USERNAME_VALIDATION_QUERY:any; }) { const { formatMessage } = useIntl() return ( <>

Form Test

{/*

Vanilla

<>
*/} ) } export default DebugForm