import { Icon } from 'tailchat-design'; import React, { PropsWithChildren } from 'react'; import { useReducer } from 'react'; export const GroupSection: React.FC< PropsWithChildren<{ header: string; }> > = React.memo((props) => { const [isShow, switchShow] = useReducer((v) => !v, true); return (