@bigbinary/neeto-commons-frontend 2.0.22 → 2.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/react-utils.d.ts CHANGED
@@ -172,3 +172,8 @@ interface Overrides {
172
172
  export const BrowserSupport: React.FC<{
173
173
  overrides?: Overrides;
174
174
  }>;
175
+
176
+ export function withTitle(
177
+ Component: () => JSX.Element,
178
+ title?: string
179
+ ): (props) => JSX.Element;