Last active
December 20, 2020 18:32
-
-
Save zHaytam/c0e9957a52276c4e9454909770fb8f47 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
const ThemeContext = React.createContext({ | |
theme: 'light', // current theme (default is light) | |
setTheme: () => {}, // function to change the theme (empty for now) | |
}); | |
export default ThemeContext; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment