Skip to content

Commit

Permalink
Fix prettier complaining about long export
Browse files Browse the repository at this point in the history
  • Loading branch information
nealeu committed Dec 31, 2019
1 parent a8ea231 commit df96d75
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/react-async/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
import Async from "./Async"
export { default as Async, createInstance, AsyncConstructor, FulfilledProps, InitialProps, PendingProps, RejectedProps, SettledProps } from "./Async"
export {
default as Async,
createInstance,
AsyncConstructor,
FulfilledProps,
InitialProps,
PendingProps,
RejectedProps,
SettledProps
} from "./Async"
export * from "./types"
export { default as useAsync, useFetch, FetchOptions, FetchError } from "./useAsync"
export default Async
Expand Down

0 comments on commit df96d75

Please sign in to comment.