Skip to content

Instantly share code, notes, and snippets.

@zHaytam
Last active December 20, 2020 18:32
Show Gist options
  • Save zHaytam/c0e9957a52276c4e9454909770fb8f47 to your computer and use it in GitHub Desktop.
Save zHaytam/c0e9957a52276c4e9454909770fb8f47 to your computer and use it in GitHub Desktop.
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