8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
import React from 'react';
|
|
|
|
const initialValue: { isReadOnly: boolean } = {
|
|
isReadOnly: false,
|
|
};
|
|
const ClusterContext = React.createContext(initialValue);
|
|
|
|
export default ClusterContext;
|