Solid Example: Multi Step Wizard

/* @refresh reload */
import { render } from 'solid-js/web'
import { WizardPage } from './features/wizard/page.tsx'

function App() {
  return <WizardPage />
}

const root = document.getElementById('root')

render(() => <App />, root!)
/* @refresh reload */
import { render } from 'solid-js/web'
import { WizardPage } from './features/wizard/page.tsx'

function App() {
  return <WizardPage />
}

const root = document.getElementById('root')

render(() => <App />, root!)