mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
15 lines
364 B
JavaScript
15 lines
364 B
JavaScript
import React from 'react';
|
|
import { withKnobs, text } from '@storybook/addon-knobs';
|
|
|
|
export default {
|
|
title: 'Addons/Knobs/withKnobs using options',
|
|
decorators: [
|
|
withKnobs({
|
|
escapeHTML: false,
|
|
}),
|
|
],
|
|
};
|
|
|
|
export const AcceptsOptions = () => <div>{text('Rendered string', '<h1>Hello</h1>')}</div>;
|
|
AcceptsOptions.storyName = 'accepts options';
|