import { useState } from "react"; const Component = () => { const [name] = useState('world'); return
Hello {name}