add booking status as calendar

This commit is contained in:
Thomas Ruoff
2020-09-03 00:31:42 +02:00
committed by Thomas Ruoff
parent b3c1b18e50
commit a03a837615
5 changed files with 136 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ import Head from 'next/head'
import React from 'react'
import Footer from '../components/footer'
import Header from '../components/header'
import Calendar from '../components/calendar'
import Wizard from '../components/wizard/index'
export default function Home() {
@@ -14,6 +15,7 @@ export default function Home() {
<Header />
<main className="main">
<Calendar />
<Wizard />
</main>
<Footer />