import { memo } from 'react' import { useStore } from './store' import { XClose } from '@/app/components/base/icons/src/vender/line/general' import { FeaturesChoose, FeaturesPanel, FeaturesProvider, } from '@/app/components/base/features' const Features = () => { const setShowFeaturesPanel = useStore(state => state.setShowFeaturesPanel) return (
Features
setShowFeaturesPanel(false)} >
{}, }} annotationProps={{ onEmbeddingChange: () => {}, onScoreChange: () => {}, }} />
) } export default memo(Features)