2019-08-28 01:54:01 +08:00
|
|
|
/**
|
|
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
|
*
|
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
|
*
|
|
|
|
|
* @flow
|
|
|
|
|
*/
|
2019-05-30 23:22:06 +08:00
|
|
|
|
2019-08-14 08:58:03 +08:00
|
|
|
import {createContext} from 'react';
|
2019-05-30 23:22:06 +08:00
|
|
|
|
|
|
|
|
const TreeFocusedContext = createContext<boolean>(false);
|
|
|
|
|
|
|
|
|
|
export default TreeFocusedContext;
|