beherbergung/frontend/search/pages/index.tsx

23 lines
540 B
TypeScript
Raw Normal View History

2022-03-09 15:15:32 +01:00
import type { NextPage } from 'next'
import Head from 'next/head'
2022-03-09 15:39:15 +01:00
import HostOfferLookupWrapper from '../components/ngo/HostOfferLookupWrapper'
2022-03-09 15:15:32 +01:00
import styles from '../styles/Home.module.css'
const Home: NextPage = () => {
return (
<div className={styles.container}>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
</Head>
<main className={styles.main}>
2022-03-09 15:39:15 +01:00
<HostOfferLookupWrapper />
2022-03-09 15:15:32 +01:00
</main>
</div>
)
}
export default Home