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) 314 B
import { IFootersContext, } from './IFootersContext'; import { createContext, } from 'react'; let footersContext: React.Context<IFootersContext> | null = null; export function getFootersContext() { if (!footersContext) { footersContext = createContext(undefined as any); } return footersContext; }