getDisplayName (React)On this pagegetDisplayName (React)Get React component display name.APIfunction getDisplayName(value: any): string;Exampleimport { getDisplayName } from "@lilib/utils";function Example() {}Example.displayName = "ExampleComponent";console.log(getDisplayName(Example));// => "ExampleComponent"