Skip to content

Commit c234cf3

Browse files
committed
[GILJOB-130] feat: Storybook 설정 추가
1 parent 6c6fb29 commit c234cf3

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.storybook/preview.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react';
1+
import React, { Suspense } from 'react';
22
import { Provider } from 'react-redux';
33
import { BrowserRouter as Router } from 'react-router-dom';
44
import store from '@src/store';
@@ -18,9 +18,11 @@ export const parameters = {
1818
export const decorators = [
1919
(Story) => (
2020
<Provider store={store}>
21-
<Router>
22-
<Story />
23-
</Router>
21+
<Suspense fallback={null}>
22+
<Router>
23+
<Story />
24+
</Router>
25+
</Suspense>
2426
</Provider>
2527
),
2628
];

0 commit comments

Comments
 (0)