Created
August 11, 2022 13:22
-
-
Save hovsater/4dcd57a141b5d1db08d1c1e629f964cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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