Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOS-React-2
QOS-React-2
/
fixtures
/
nesting
/
src
/
shared
/
ThemeContext.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
5 lines
110 Bytes
Copy permalink
Copy
Raw
1
import
{
createContext
}
from
'
react
'
;
2
3
const
ThemeContext
=
createContext
(
null
);
4
5
export
default
ThemeContext
;