import * as React from 'react'; import classnames from 'classnames'; import { TitleProps } from 'src/types/op-table'; /** * * * *
订单号: 12312312
*
拣选号: 123092103129 | 蓝号 01
*
* */ export default function Title(props: TitleProps) { const { className = '', children } = props; return (
{children}
); }