mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
18 lines
464 B
TypeScript
18 lines
464 B
TypeScript
import * as React from "react"; // tslint:disable-line
|
|
import addons from "@storybook/addons";
|
|
|
|
import BackgroundPanel from "./BackgroundPanel";
|
|
|
|
const ADDON_ID = "storybook-addon-background";
|
|
const PANEL_ID = `${ADDON_ID}/background-panel`;
|
|
|
|
addons.register(ADDON_ID, api => {
|
|
const channel = addons.getChannel();
|
|
addons.addPanel(PANEL_ID, {
|
|
title: "Backgrounds",
|
|
render: () => (
|
|
<BackgroundPanel channel={channel} api={api} />
|
|
),
|
|
});
|
|
});
|