Remove type annotation from FAQ code example

This commit is contained in:
Sam Magura 2021-10-18 11:50:21 -04:00 committed by GitHub
parent e5ee77a2d1
commit 9507c7ea7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -366,7 +366,7 @@ This works because Babel replaces `process.env.STORYBOOK` with the value of the
the following will **NOT** work:
```javascript
export function isRunningInStorybook(): boolean {
export function isRunningInStorybook() {
return typeof process?.env?.STORYBOOK !== 'undefined';
// ReferenceError: process is not defined
}