storybook/examples/official-storybook/stories/addon-knobs/with-knobs-options.stories.js
2020-05-25 13:32:05 +08:00

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';