6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
import { createContext } from "react";
|
|
|
|
export const AppContext = createContext<
|
|
{ activeKitty: string; setActiveKitty: (value: string) => void } | undefined
|
|
>(undefined);
|