storybook-addon-customize-antd-theme
Version:
a Storybook addon help you visually customize an ant design theme
23 lines (19 loc) • 789 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.decorators = void 0;
var _Decorator = _interopRequireDefault(require("../components/Decorator"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
/**
* A decorator is a way to wrap a story in extra “rendering” functionality. Many addons define decorators
* in order to augment stories:
* - with extra rendering
* - gather details about how a story is rendered
*
* When writing stories, decorators are typically used to wrap stories with extra markup or context mocking.
*
* https://storybook.js.org/docs/react/writing-stories/decorators#gatsby-focus-wrapper
*/
var decorators = [_Decorator["default"]];
exports.decorators = decorators;