mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-23 04:49:50 -04:00
8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
import React from 'react';
|
|
const ThemeContext = React.createContext(null);
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
ThemeContext.displayName = 'ThemeContext';
|
|
}
|
|
|
|
export default ThemeContext; |