UNPKG

zent

Version:

一套前端设计语言和基于React的实现

38 lines (34 loc) 418 B
--- order: 2 zh-CN: title: 数组 link: array en-US: title: Use Array link: array --- ```jsx import { Timeline } from 'zent'; const timeline = [ 'hello', 'world', { label: 'blue', dotColor: '#5197FF', }, { label: 'red', lineColor: '#E70000', }, { label: 'color', color: '#E70000', }, ]; ReactDOM.render( <div> <Timeline type="horizontal" timeline={timeline} /> </div>, mountNode ); ```