superset/superset-frontend/packages/superset-ui-demo/.storybook/themeDecorator.js
Michael S. Molina b7cff8335b
chore: Removes hard-coded colors from the plugins - iteration 1 (#19923)
* chore: Removes hard-coded colors from the plugins - iteration 1

* Fixes lint errors

* Fixes tests
2022-05-09 10:44:13 -03:00

10 lines
251 B
JavaScript

// themeDecorator.js
import React from 'react';
import { supersetTheme, ThemeProvider } from '@superset-ui/core';
const ThemeDecorator = Story => (
<ThemeProvider theme={supersetTheme}>{<Story />}</ThemeProvider>
);
export default ThemeDecorator;