Skip to content

Commit 76aca03

Browse files
author
Alexis
committed
fix: include built css in storybook preview
1 parent a3ffa62 commit 76aca03

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.storybook/preview.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ import { Provider } from 'react-redux';
33

44
import ThemeProvider from '../client/modules/App/components/ThemeProvider';
55
import configureStore from '../client/store';
6+
import '../client/styles/build/css/main.css'
67

78
const initialState = window.__INITIAL_STATE__;
89

910
const store = configureStore(initialState);
1011

1112
export const decorators = [
1213
(Story) => (
13-
<Provider store={store}>
14+
<Provider store={store}>
1415
<ThemeProvider>
1516
<Story />
1617
</ThemeProvider>

0 commit comments

Comments
 (0)