import { classNames } from '@/Utils/ConcatenateClassNames' import { ComponentPropsWithoutRef, ForwardedRef, forwardRef } from 'react' // Based on: https://css-tricks.com/auto-growing-inputs-textareas/#aa-other-ideas const AutoresizingNoteViewTextarea = forwardRef( ( { value, className, ...textareaProps }: ComponentPropsWithoutRef<'textarea'>, ref: ForwardedRef, ) => { return (
          {value}{' '}
        
) }, ) export default AutoresizingNoteViewTextarea