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

Hello {name}

; }; export default Component;