Skip to content

Instantly share code, notes, and snippets.

View ErikPervious's full-sized avatar
🎯
Focusing

Erik Matheus ErikPervious

🎯
Focusing
View GitHub Profile
import { createContext, ReactNode, useEffect, useState } from 'react'
type Theme = 'light' | 'dark';
type ThemeContextProviderProps = {
children: ReactNode;
}
type ThemeContextType = {
theme: Theme;