| 123456789101112131415161718192021222324252627 |
- import { Badge, Cell } from "@nutui/nutui-react-taro";
- import { ArrowRight } from "@nutui/icons-react-taro";
- import { View } from "@tarojs/components";
- const Message = () => {
- return (
- <>
- <Cell
- title={
- <>
- <Badge right="0" dot>
- 赞和收藏
- </Badge>
- </>
- }
- extra={
- <View className="flex items-center">
- <ArrowRight />
- </View>
- }
- />
- <Cell title="评论" extra={<ArrowRight />} />
- </>
- );
- };
- export default Message;
|