123456789101112131415161718192021 |
- import React, { useState, useEffect } from 'react'
- import './index.scss'
- import '../../../../../assets/css/iconfont.css'
- import { ScrollView, Image } from '@tarojs/components'
-
- export default function LivingActivity (props) {
- const { Data = {} } = props
- return (
- <view className='components LivingActivity'>
-
- <view className='Title flex-h'>
- <view className='flex-item'>
- <text>直播活动</text>
- </view>
- <text>更多</text>
- <text className='iconfont icon-jiantouright'></text>
- </view>
-
- </view>
- )
- }
|