mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
11 lines
190 B
TypeScript
11 lines
190 B
TypeScript
import Book from '../components/book'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<h1 className="mb-3 text-xl font-extrabold">Buchungsanfrage</h1>
|
|
<Book />
|
|
</>
|
|
)
|
|
}
|