import React from 'react'; import type { Section } from '@teambit/component'; import type { TabItem } from '@teambit/component.ui.component-compare.models.component-compare-props'; import { MenuWidgetIcon } from '@teambit/ui-foundation.ui.menu-widget-icon'; import type { ComponentCompareUI } from './component-compare.ui.runtime'; export class CompareChangelogSection implements Section, TabItem { constructor(private compareUI: ComponentCompareUI) {} navigationLink = { href: 'changelog', children: , displayName: 'Change log', }; props = this.navigationLink; route = { path: 'changelog/*', element: this.compareUI.getChangelogComparePage(), }; order = 70; widget = true; id = 'changelog'; }