Time to do cool things!
First, let's edit App.tsx and declare a name variable:
App.tsx
name
export default function App() { const name = "Kaioken" return <h1>Hello, {name}!</h1> }