Split from https://github.com/twentyhq/twenty/pull/4518 Part of https://github.com/twentyhq/twenty/issues/4766 - Re-generates some of the twenty-ui test and storybook config with Nx - Includes tsx files in twenty-ui tests and compiles them with swc --------- Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
22 lines
545 B
TypeScript
22 lines
545 B
TypeScript
import { ThemeProvider } from '@emotion/react';
|
|
import { withThemeFromJSXProvider } from '@storybook/addon-themes';
|
|
import { Preview, ReactRenderer } from '@storybook/react';
|
|
|
|
import { THEME_DARK, THEME_LIGHT } from '../src/theme/index';
|
|
|
|
const preview: Preview = {
|
|
// TODO: Add toggle for darkTheme.
|
|
decorators: [
|
|
withThemeFromJSXProvider<ReactRenderer>({
|
|
themes: {
|
|
light: THEME_LIGHT,
|
|
dark: THEME_DARK,
|
|
},
|
|
defaultTheme: 'light',
|
|
Provider: ThemeProvider,
|
|
}),
|
|
],
|
|
};
|
|
|
|
export default preview;
|