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