Skip to content

Instantly share code, notes, and snippets.

@zidniryi
Created January 3, 2023 15:20
Show Gist options
  • Save zidniryi/9fba835e65f8d4493b3034a98dc4660c to your computer and use it in GitHub Desktop.
Save zidniryi/9fba835e65f8d4493b3034a98dc4660c to your computer and use it in GitHub Desktop.
App Test Konsep Koding User Event
import React, {useState} from 'react'
export default function App() {
const [text, setText] = useState("")
return (
<div style={{marginLeft:"20px"}}>
<h1>Input</h1>
<input value={text} onChange={(e) => setText(e.target.value)} placeholder="input data" data-testid='input-form'/>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment