mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-28 20:59:23 -06:00
6 lines
213 B
JavaScript
6 lines
213 B
JavaScript
import * as React from 'react';
|
|
const ThemeContext = /*#__PURE__*/React.createContext(null);
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
ThemeContext.displayName = 'ThemeContext';
|
|
}
|
|
export default ThemeContext; |