mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:01:16 +08:00
CLEANUP
This commit is contained in:
parent
a04a660a86
commit
67b42244f5
@ -15,7 +15,7 @@ const copyMapper = ({ state }: Combo) => ({
|
||||
|
||||
export const copyTool: Addon = {
|
||||
title: 'copy',
|
||||
match: p => p.viewMode === 'story',
|
||||
match: ({ viewMode }) => viewMode === 'story',
|
||||
render: () => (
|
||||
<Consumer filter={copyMapper}>
|
||||
{({ baseUrl, storyId, origin, pathname, queryParams }: ReturnType<typeof copyMapper>) => (
|
||||
|
@ -12,7 +12,7 @@ const ejectMapper = ({ state }: Combo) => ({
|
||||
|
||||
export const ejectTool: Addon = {
|
||||
title: 'eject',
|
||||
match: p => p.viewMode === 'story',
|
||||
match: ({ viewMode }) => viewMode === 'story',
|
||||
render: () => (
|
||||
<Consumer filter={ejectMapper}>
|
||||
{({ baseUrl, storyId, queryParams }: ReturnType<typeof ejectMapper>) => (
|
||||
|
@ -54,7 +54,7 @@ export { Zoom, ZoomConsumer, ZoomProvider };
|
||||
|
||||
export const zoomTool: Addon = {
|
||||
title: 'zoom',
|
||||
match: p => p.viewMode === 'story',
|
||||
match: ({ viewMode }) => viewMode === 'story',
|
||||
render: () => (
|
||||
<Fragment>
|
||||
<ZoomConsumer>
|
||||
|
Loading…
x
Reference in New Issue
Block a user