Let's create your first app!

Time to do cool things!

First, let's edit App.tsx and declare a name variable:

export default function App() {
  const name = "Kaioken"
  return <h1>Hello, {name}!</h1>
}
preparing sandbox environment...