mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
21 lines
635 B
TypeScript
21 lines
635 B
TypeScript
import * as React from 'react';
|
|
import addons, { types } from '@storybook/addons';
|
|
|
|
import { ADDON_ID, PANEL_ID, PARAM_KEY } from './shared';
|
|
|
|
// TODO: fix eslint in tslint (igor said he fixed it, should ask him)
|
|
import Panel from './Panel';
|
|
|
|
export default function register(type: types) {
|
|
addons.register(ADDON_ID, api => {
|
|
addons.add(PANEL_ID, {
|
|
type,
|
|
title: 'Notes',
|
|
route: ({ storyId }) => `/info/${storyId}`, // todo add type
|
|
match: ({ viewMode }) => viewMode === 'info', // todo add type
|
|
render: ({ active }) => <Panel api={api} active={active} />,
|
|
paramKey: PARAM_KEY,
|
|
});
|
|
});
|
|
}
|