Skip to content

Commit

Permalink
style($flow): Fix LoadingComponent typo
Browse files Browse the repository at this point in the history
  • Loading branch information
corydeppen committed Jan 30, 2018
1 parent 68164b8 commit 1a3649c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/flowTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export type ModuleOptions = {
}

export type ComponentOptions = {
loading?: LoadingCompponent,
loading?: LoadingComponent,
error?: ErrorComponent,
minDelay?: number,
alwaysDelay?: boolean,
Expand Down Expand Up @@ -110,7 +110,7 @@ export type GenericComponent<Props> =
| React$Element<any>

export type Component<Props> = GenericComponent<Props>
export type LoadingCompponent = GenericComponent<{}>
export type LoadingComponent = GenericComponent<{}>
export type ErrorComponent = GenericComponent<{}>

// babel-plugin-universal-import
Expand Down

0 comments on commit 1a3649c

Please sign in to comment.