mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 14:37:13 +01:00
17 lines
337 B
TypeScript
17 lines
337 B
TypeScript
import React from 'react'
|
|
import Footer from '../components/footer'
|
|
import Header from '../components/header'
|
|
import Wizard from '../components/wizard/index'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Header label="Anfrage" />
|
|
<main className="main">
|
|
<Wizard />
|
|
</main>
|
|
<Footer />
|
|
</>
|
|
)
|
|
}
|