Repository URL to install this package:
|
Version:
2.8.0-studio-release ▾
|
| .. |
| ErrorMessage.tsx |
| README.md |
| index.ts |
| styled.ts |
| typings.ts |
this is the smallest form of error, message, icon, modal, dom factory
/** * this was in ui-component-library, it is bloating DOM * * Render the default wrapper for error children */ export function defaultRenderWrapper(props: ErrorProps) { const { className, children } = props return ( <ErrorComponentWrapper className={className}> {children} </ErrorComponentWrapper> ) }