import {Context, createContext, Dispatch, SetStateAction} from "react"; export interface SettingBookContextProps { bookSettingId: string; setBookSettingId: Dispatch> } export const SettingBookContext: Context = createContext({ bookSettingId: '', setBookSettingId: (): void => { } })