7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
import { createContext } from "react";
|
|
import { ControlsContextType } from "./types";
|
|
|
|
const ControlsContext = createContext<ControlsContextType>(null);
|
|
|
|
export default ControlsContext;
|