Skip to content

Instantly share code, notes, and snippets.

@mrcthms
Created March 3, 2020 11:36
Show Gist options
  • Save mrcthms/4789de8ffe03834ae64e8b91eb5c5a77 to your computer and use it in GitHub Desktop.
Save mrcthms/4789de8ffe03834ae64e8b91eb5c5a77 to your computer and use it in GitHub Desktop.
import React, { useState } from 'react'
import { Textarea } from '@invisionapp/helios'
function MyComponent() {
const [value, setValue] = useState('')
function handleChange(evt) {
setValue(evt.target.value)
}
return (
<Textarea value={value} onChange={handleChange} />
)
}
export default MyComponent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment