如何在Response Commerce中的所有页面上添加自定义组件

时间:2018-08-01 20:15:45

标签: reaction-commerce

我正在开发React Commerce 1.10.0。现在,我想在所有页面的右侧添加一个“需要助手”标签。我已经创建了该组件,但是不知道如何将其添加到所有页面。

这是我的组件代码:

import React from "react";
import { registerComponent } from "/imports/plugins/core/components/lib";

const SidebarAssistant = () => (
  <div className="sidebar-need-assistant">
    <a href="XXX">Need Assistant</a>
  </div>
);

registerComponent("SidebarAssistant", SidebarAssistant);

export default SidebarAssistant;

我还附上了下面的设计(黑色位置代表较低层的内容):

enter image description here

0 个答案:

没有答案