8 lines
No EOL
228 B
JavaScript
8 lines
No EOL
228 B
JavaScript
'use client';
|
|
|
|
import * as React from 'react';
|
|
const ThemeContext = /*#__PURE__*/React.createContext(null);
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
ThemeContext.displayName = 'ThemeContext';
|
|
}
|
|
export default ThemeContext; |