mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
fix storyshots
This commit is contained in:
parent
200a7c2453
commit
a8c4e18062
@ -49,7 +49,8 @@ class ErrorBoundary extends Component<{
|
||||
}
|
||||
}
|
||||
|
||||
const Wrapper = FRAMEWORK_OPTIONS.strictMode ? React.StrictMode : React.Fragment;
|
||||
const isStrict = process.env.STORYBOOK_EXAMPLE_APP || FRAMEWORK_OPTIONS?.strictMode;
|
||||
const Wrapper = isStrict ? React.StrictMode : React.Fragment;
|
||||
|
||||
export default async function renderMain({
|
||||
storyFn,
|
||||
|
3
app/react/src/typings.d.ts
vendored
3
app/react/src/typings.d.ts
vendored
@ -3,6 +3,3 @@ declare module '@storybook/semver';
|
||||
declare module 'global';
|
||||
// todo check for correct types
|
||||
declare module 'webpack/lib/RuleSet';
|
||||
|
||||
// will be provided by the webpack define plugin
|
||||
declare const FRAMEWORK_OPTIONS;
|
||||
|
Loading…
x
Reference in New Issue
Block a user