CodeGen: Determine whether a string is a palindrome
CodeGen was given this prompt:
import { useState } from 'react';
/*
* Take a string as input in a textfield
* Determine whether the string is a palindrome
* Display the result in a div
*/
export default function isPalindrome() {
const [inputString, setInputString] = useState("");
return (
<>
<label>Type a word to check whether it's a palindrome or not: </label> <br />
<input id="inputString" onChange={(e) => {
CodeGen generated this code completion
import { useState } from'react';
/*
* Take a string as input in a textfield
* Determine whether the string is a palindrome
* Display the result in a div
*/
export default function isPalindrome() {
const [inputString, setInputString] = useState("");
return (
<>
<label>Type a word to check whether it's a palindrome or not: </label> <br />
<input id="inputString" onChange={(e) => {setInputString(e.target.value)} } type="text" />
<input type='button' value='Go' onClick={() => { console.log(inputString) }}/>
<div id="result" ></div>
</>
)
}