12345678910111213141516171819
  1. import React, { useState, useEffect } from 'react'
  2. import './index.scss'
  3. import '../../../../../assets/css/iconfont.css'
  4. import { ScrollView, Image } from '@tarojs/components'
  5. export default function Periphery (props) {
  6. const { Data = {} } = props
  7. return (
  8. <view className='components Periphery'>
  9. <view className='Title flex-h'>
  10. <view className='flex-item'>
  11. <text>位置及周边配套</text>
  12. </view>
  13. </view>
  14. </view>
  15. )
  16. }