diff --git a/packages/block-editor/src/components/block-preview/stories/index.story.js b/packages/block-editor/src/components/block-preview/stories/index.story.js index ca38211eaecd2c..1b7cfad781f4ff 100644 --- a/packages/block-editor/src/components/block-preview/stories/index.story.js +++ b/packages/block-editor/src/components/block-preview/stories/index.story.js @@ -7,7 +7,8 @@ import { registerCoreBlocks } from '@wordpress/block-library'; /** * Internal dependencies */ -import BlockPreview from '../index'; +import BlockPreview from '..'; +import { BlockEditorProvider } from '../../provider'; // Register core blocks to be used in the preview. registerCoreBlocks(); @@ -63,7 +64,7 @@ const meta = { }, additionalStyles: { description: - 'Additional styles to apply to the preview iframe as an array of CSS rules.', + 'Additional styles to apply to the preview iframe as an array of CSS rules. Each object should contain a `css` attribute.', control: 'object', table: { type: { @@ -78,7 +79,11 @@ export default meta; export const Default = { render: function Template( args ) { - return ; + return ( + + + + ); }, args: { blocks: sampleBlocks, @@ -90,12 +95,16 @@ export const Default = { export const CustomStyles = { render: function Template( args ) { - return ; + return ( + + + + ); }, args: { blocks: sampleBlocks, viewportWidth: 1200, minHeight: 100, - additionalStyles: [ { css: `body { color: #ff0000; }` } ], + additionalStyles: [ { css: `p { color: #ff0000; }` } ], }, };