我正在开发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;
我还附上了下面的设计(黑色位置代表较低层的内容):