UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

16 lines (13 loc) 273 B
import { IContext, } from './IContext'; import { createContext, } from 'react'; let appContext: React.Context<IContext> | null = null; export function getAppContext() { if (!appContext) { appContext = createContext(undefined as any); } return appContext; }