Files
pfadi-bussle/pages/book.tsx
2022-09-13 22:33:30 +02:00

11 lines
185 B
TypeScript

import Book from '../components/book'
export default function Home() {
return (
<>
<h1 className="text-xl font-extrabold">Buchungsanfrage</h1>
<Book />
</>
)
}