-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(error-boundary-jsx): fix broken dupe exports (#284)
* fix(error-boundary-jsx): fix broken dupe exports * fix: tests * fix: another test
- Loading branch information
1 parent
d722e13
commit 01bf9dc
Showing
4 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
import ErrorBoundary, { ErrorFallbackProps } from './ErrorBoundary'; | ||
import ErrorBoundary from './ErrorBoundary'; | ||
|
||
export default ErrorBoundary; | ||
export type ErrorFallbackProps = ErrorFallbackProps; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
import { ErrorFallbackProps } from './ErrorBoundary/ErrorBoundary'; | ||
|
||
export { default as withErrorBoundary } from './withErrorBoundary'; | ||
export { default as ErrorBoundary } from './ErrorBoundary'; | ||
export * from './ErrorBoundary'; | ||
|
||
export type ErrorFallbackProps = ErrorFallbackProps; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters