import React, { useState } from 'react'; type Props = { title?: string }; function App(props: Props) { const [count, setCount] = useState(0); function unusedFunc(): string { return 'unused'; } const name = props.username; const arr = [1,2,3]; const list = arr.map(item =>
  • {item}
  • ); const style = { color: 'red', fontWeight: 500 }; let result = value + 1; setCount(count++); return (
    Hello World {list}

    {name}

    Unwrapped

    ) } export { App }; const unused = 123;