将箭头函数返回给组件

时间:2018-09-14 17:52:45

标签: reactjs

我在下面具有箭头功能,我希望能够将此处的所有内容返回给组件。 我该如何退货?可以与此一起使用导出吗?下面的代码位于 一个js文件。

const myTester = props => {
  [
    {
      title: props.intl.formatMessage({
        id: "ren_past_due"
      }),
      icon: (
        <EventBusy
          color="#cc2444"
          style={style}
          className="icon-box-icon-image material-icons"
        />
      ),
      color: "#C60C30",
      expiresBefore: today()
    },
    {
      title: props.intl.formatMessage({
        id: "ren_zerotothree_months"
      }),
      icon: (
        <Today
          color="#f2b826"
          style={style}
          className="icon-box-icon-image material-icons"
        />
      ),
      color: "#F0AB00",
      expiresAfter: today(),
      expiresBefore: today().add(3, "months")
    }
  ].map(item => {
    if (item.expiresBefore) {
      item.expiresBefore = item.expiresBefore.format("Y-MM-DD");
    }
    if (item.expiresAfter) {
      item.expiresAfter = item.expiresAfter.format("Y-MM-DD");
    }
    return item;
  });
};

0 个答案:

没有答案