NoNameWrath's picture
Deploy to HuggingFace Spaces
c02c6ce
Raw
History Blame Contribute Delete
331 Bytes
import React, { useState } from 'react'
import Landing from './Landing.jsx'
import AppPage from './AppPage.jsx'
export default function App() {
const [page, setPage] = useState('landing')
if (page === 'app') {
return <AppPage onBack={() => setPage('landing')} />
}
return <Landing onStart={() => setPage('app')} />
}