forked from nsjcy/frontEnd/nsjcy

Mr Ke
2020-03-31 09b4797fb18e2971434c8cfc217f706628e0126e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * 徐祥健<xuxj@hugeinfo.com.cn>
 * 2018年7月17日 20:10
 *
 */
 
 
import React from 'react';
// import { Link } from 'react-router-dom';
// import { Modal } from 'antd-mobile';
// import { Icon } from 'antd';
// import chunk from 'lodash/chunk';
// import tree from 'hife/tree';
 
import './style.scss';
 
export default function BusDetailView({ type, children }) {
  return (
    <div className="bus-detail-view-main">
      <div className='bus-detail-view-type'><span>{type}</span></div>
      {children}
    </div>
  );
 
}