Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created May 17, 2020 18:00
Show Gist options
  • Save jsmanifest/5950d03196ddd918b4fdaa4167eb6b70 to your computer and use it in GitHub Desktop.
Save jsmanifest/5950d03196ddd918b4fdaa4167eb6b70 to your computer and use it in GitHub Desktop.
import React from 'react'
import MyInput from './MyInput'
function App() {
const [value, setValue] = React.useState('')
return <MyInput value={value} />
}
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment