From f061f95c16760590a099e4e0319896e0f9221a88 Mon Sep 17 00:00:00 2001 From: "Bartosz V. Bentkowski" Date: Fri, 22 Mar 2019 10:29:52 -0700 Subject: [PATCH] Add note about styled-components to withErrorBoundary --- source/hocs/withErrorBoundary/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/hocs/withErrorBoundary/README.md b/source/hocs/withErrorBoundary/README.md index abeda1b8..fe48723a 100644 --- a/source/hocs/withErrorBoundary/README.md +++ b/source/hocs/withErrorBoundary/README.md @@ -13,6 +13,9 @@ The `options` param is optional and can have the following: * `options.appName` - Front-End application's name; this is sent to remote log * `options.appVersion` - Front-End application's verion; this is sent to remote log +**NOTE**: This component requires `styled-components` for displaying the default fallback Component. +Alternatively the `options.fallbackComponent` should be used to provide custom fallback or to disable this feature completely. + ## Examples Very basic usage: