Skip to content

Instantly share code, notes, and snippets.

@hovsater
Created August 11, 2022 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hovsater/4dcd57a141b5d1db08d1c1e629f964cc to your computer and use it in GitHub Desktop.
Save hovsater/4dcd57a141b5d1db08d1c1e629f964cc to your computer and use it in GitHub Desktop.
function EditText<T extends React.ElementType = "h1">({
as,
children
}: EditTextProps<T>) {
const Component = as || "h1";
return <Component>{children}</Component>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment