import {ChapterProps} from "@/lib/models/Chapter"; import {createContext, Dispatch, SetStateAction} from "react"; export interface ChapterContextProps { chapter: ChapterProps | undefined, setChapter: Dispatch> } export const ChapterContext = createContext({ chapter: undefined, setChapter: () => { } })