mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 11:51:07 +08:00
11 lines
344 B
JavaScript
11 lines
344 B
JavaScript
/* eslint-disable react/react-in-jsx-scope */
|
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
import PropTypes from 'prop-types';
|
|
|
|
// eslint-disable-next-line react/no-danger
|
|
export const Html = ({ content }) => <div dangerouslySetInnerHTML={{ __html: content }} />;
|
|
|
|
Html.propTypes = {
|
|
content: PropTypes.string.isRequired,
|
|
};
|