index.jsx 535B

1234567891011121314151617
  1. import React, { useState, useEffect } from 'react'
  2. import './index.scss'
  3. import '../../../../assets/css/iconfont.css'
  4. export default function Location (props) {
  5. return (
  6. <view className='components Location flex-h'>
  7. <text className='iconfont icon-dingwei'></text>
  8. <text>南京市</text>
  9. <text className='iconfont icon-jiantoudown'></text>
  10. <view className='flex-item'>
  11. <text className='iconfont icon-sousuo'></text>
  12. <text>输入你想查询的楼盘</text>
  13. </view>
  14. </view>
  15. )
  16. }