I'm looking for a textarea component that allows users to enter any number of lines of text. The textInput component I found only allows for one single line of input.
Moreover, I am hoping to save the newline / tab / spaces that the users enter into the text area, so that I can retrieve them exactly the way users enter in.
e.g. Users enter the following:
if(x = True):
x = x + 1
danger()
I hope to be able to save the exact thing that users enter into a database (for example), for verbatim retrieval.