Skip to content

Instantly share code, notes, and snippets.

@TheLucifurry
Last active January 18, 2024 06:28
Show Gist options
  • Select an option

  • Save TheLucifurry/2110e7c101a69ae0837cde8dc6a686ef to your computer and use it in GitHub Desktop.

Select an option

Save TheLucifurry/2110e7c101a69ae0837cde8dc6a686ef to your computer and use it in GitHub Desktop.
function useInstance<ElementType extends HTMLElement = HTMLDivElement>(component?) {
return shallowRef<
typeof component extends undefined
? ElementType
: InstanceType<typeof component>
>(null)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment