/**
|
* 徐祥健<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>
|
);
|
|
}
|