ModusCreateOrg/budgeting

View on GitHub
app/utils/getDisplayName.js

Summary

Maintainability
A
0 mins
Test Coverage
// @flow
import type { ComponentType } from 'react';

/**
 * Returns the display name of a component. Useful for making HOCs
 */
export default function getDisplayName(Component: ComponentType<any>): string {
  return Component.displayName || Component.name || 'Component';
}