Skip to content

Instantly share code, notes, and snippets.

@fforres
Created August 23, 2022 16:58
Show Gist options
  • Save fforres/3fc64b675fbeffa2365ca3b2a3f2f7ee to your computer and use it in GitHub Desktop.
Save fforres/3fc64b675fbeffa2365ca3b2a3f2f7ee to your computer and use it in GitHub Desktop.
const IssueCardWizardInternal = () => {
// many things happen here
return <SomeComponent />
}
// Wrap your component like this 👇
export default IssueCardWizardInternal
import { withControllerPerformanceMetrics } from "@/domains/App/components/Controller";
const IssueCardWizardInternal = () => {
// many things happen here
return <SomeComponent />
}
// Wrap your component like this 👇
export default withControllerPerformanceMetrics(IssueCardWizardInternal)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment