import React from 'react' import ThemeContext from './themeContext' import "tailwindcss/tailwind.css"; const Toggle = () => { const { theme, setTheme } = React.useContext(ThemeContext) function isDark() { return theme === "dark" } return (
) } export default Toggle