From 67cf096db247777e308f1ee6e10b1521d4f66ac8 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Fri, 18 Jun 2021 23:27:14 +0200 Subject: [PATCH] the thing is called a provider now --- components/book/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/book/index.tsx b/components/book/index.tsx index f12461f..60cb52a 100644 --- a/components/book/index.tsx +++ b/components/book/index.tsx @@ -1,6 +1,6 @@ import React, { useContext } from 'react' import Contact from './contact' -import BookStore, { BookContext } from '../../context/book' +import BookProvider, { BookContext } from '../../context/book' import DateSelect from './dateSelect' import Reason from './reason' @@ -43,8 +43,8 @@ function BookForm() { export default function Book() { return ( - + - + ) }