chore: images create

This commit is contained in:
jialin
2024-11-22 10:00:34 +08:00
parent c3473673da
commit dde937f460
52 changed files with 1883 additions and 941 deletions
+2 -2
View File
@@ -9,11 +9,11 @@ interface SpeechContentProps {
const SpeechContent: React.FC<SpeechContentProps> = (props) => {
console.log('SpeechContent', props);
return (
<div>
<>
{props.dataList.map((item) => (
<SpeechItem key={item.uid} {...item} />
))}
</div>
</>
);
};