1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00
festa/utils/stateContext.ts

13 lines
508 B
TypeScript
Raw Normal View History

2022-05-24 16:55:21 +00:00
import * as React from "react"
import { useContext } from "react"
2022-05-27 00:46:30 +00:00
import { createDefinedContext } from "./definedContext"
2022-05-24 16:55:21 +00:00
/**
* Create a new defined context (see {@link createDefinedContext}) containing the tuple returned by {@link React.useState} for the given type.
*
* @returns The created context.
*/
export function createStateContext<T>(): React.Context<[T, React.Dispatch<React.SetStateAction<T>>] | undefined> {
return createDefinedContext<[T, React.Dispatch<React.SetStateAction<T>>]>()
}