forked from cerc-io/laconic-console
12 lines
216 B
JavaScript
12 lines
216 B
JavaScript
//
|
|
// Copyright 2020 DXOS.org
|
|
//
|
|
|
|
import { createContext } from 'react';
|
|
|
|
/**
|
|
* https://reactjs.org/docs/context.html#reactcreatecontext
|
|
* @type {React.Context}
|
|
*/
|
|
export const ConsoleContext = createContext({});
|