📜  时间线材质 ui react native - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:28.602000             🧑  作者: Mango

代码示例1
import { Timeline } from 'react-material-timeline';import { Avatar, Icon } from '@material-ui/core';  const events = [  {    title: 'Event 1',    subheader: new Date().toDateString(),    description: [ 'Some description for event 1' ],    icon: work,  },  {    title: 'Event 2',    subheader: new Date().toDateString(),    description: [ 'Some description for event 2' ],    icon: home,  }]; class AwesomeTimeline extends Component {  render() {    return ;  }}