feat(web): Add Emotion Memory

This commit is contained in:
zhaoying
2025-12-19 16:54:52 +08:00
parent 7da3c5a8e8
commit bcec0ae401
17 changed files with 1620 additions and 146 deletions

View File

@@ -0,0 +1,29 @@
import { type FC } from 'react'
import { Row, Col } from 'antd';
import WordCloud from '../components/WordCloud'
import EmotionTags from '../components/EmotionTags'
import Health from '../components/Health'
import Suggestions from '../components/Suggestions'
const EmotionDetail: FC = () => {
return (
<Row gutter={[16, 16]}>
<Col span={12}>
<WordCloud />
</Col>
<Col span={12}>
<EmotionTags />
</Col>
<Col span={12}>
<Health />
</Col>
<Col span={12}>
<Suggestions />
</Col>
</Row>
)
}
export default EmotionDetail