Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Apr 24, 2020
1 parent e44a850 commit 82da2a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import { API } from '@storybook/api';

interface ManagerContainerProps {
Expand Down
4 changes: 3 additions & 1 deletion misc/storybook-custom-docs/src/preview-loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ interface DocsOptions {
}

module.exports.default = async function() {
const options: DocsOptions = (getOptions(this) as DocsOptions) || { pages: []};
const options: DocsOptions = (getOptions(this) as DocsOptions) || {
pages: [],
};
const { pages } = options;
const callback = this.async();
const code = `
Expand Down

0 comments on commit 82da2a2

Please sign in to comment.