import { client } from '@/client'; import { useState } from 'react'; import { useAccount } from 'wagmi'; export const ListGroup = () => { const { address } = useAccount(); const [groupName, setGroupName] = useState(''); const [prefix, setPrefix] = useState(''); return (

group list

{ setPrefix(e.target.value); }} /> { setGroupName(e.target.value); }} />
); };