Skip to content

Commit

Permalink
fix: installing command
Browse files Browse the repository at this point in the history
  • Loading branch information
arunavabasucom committed Feb 26, 2024
1 parent d2a0def commit 89c60a7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ function App(): React.ReactElement {
);
}

// export default App;


export default function ToggleColorMode() {
const [mode, setMode] = React.useState<"light" | "dark">("light");
Expand All @@ -186,7 +186,9 @@ export default function ToggleColorMode() {
return (
<ColorModeContext.Provider value={colorMode}>
<ThemeProvider theme={theme}>
{/*for analytics*/}
<Analytics />
{/*for speed insights*/}
<SpeedInsights/>
<App />
</ThemeProvider>
Expand Down

0 comments on commit 89c60a7

Please sign in to comment.