import { client } from '@/client';
import { useState } from 'react';
import { useAccount } from 'wagmi';
export const CreateGroup = () => {
const { address, connector } = useAccount();
const [createGroupInfo, setCreateGroupInfo] = useState({
groupName: '',
});
return (
create group
{
setCreateGroupInfo({ ...setCreateGroupInfo, groupName: e.target.value });
}}
/>
);
};