Skip to content

Commit

Permalink
feat: Update default dark mode setting in App.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
preston176 committed Jul 11, 2024
1 parent 225a5e1 commit bc93c15
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import SpeechToText from './Pages/SpeechToText';
import Summarize from './Pages/Summarize';

const App = () => {
const [isDarkMode, setIsDarkMode] = useState(true);
// by default : darkMode Enabled
const [isDarkMode, setIsDarkMode] = useState(false);

const toggleTheme = () => {
setIsDarkMode(!isDarkMode);
Expand Down

0 comments on commit bc93c15

Please sign in to comment.