From 613aca0bb79e63355383ac1c05dc3bdb5dbe9e5a Mon Sep 17 00:00:00 2001 From: Kevin Tun Date: Sun, 25 Feb 2024 00:31:51 -0600 Subject: [PATCH] feat(ui-common): add new error components ServerError, NotFoundError, and OtherError The commit adds new error components to the ui-common package: ServerError, NotFoundError, and OtherError. These components can be used to display different types of errors in the UI, providing a more comprehensive error handling experience. --- packages/ui-common/src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/ui-common/src/index.ts b/packages/ui-common/src/index.ts index 7c8d0c05c0..e32ec26667 100644 --- a/packages/ui-common/src/index.ts +++ b/packages/ui-common/src/index.ts @@ -8,3 +8,6 @@ export * from "./DateDisplay" export * from "./DictyTab" export * from "./DictyTabs" export * from "./Error/GraphQLErrorPage" +export * from "./Error/ServerError" +export * from "./Error/NotFoundError" +export * from "./Error/OtherError"