We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47e2ac0 commit 265bdaeCopy full SHA for 265bdae
1 file changed
src/main.tsx
@@ -5,6 +5,7 @@ import '@/utils/i18n';
5
import '@/utils/blockly-global'; // Expose Blockly globally for external plugins
6
import App from '@/App.tsx';
7
import { GoogleOAuthProvider } from '@react-oauth/google';
8
+import { ThemeInit } from '../.flowbite-react/init';
9
10
function Root() {
11
const [googleClientId, setGoogleClientId] = useState<string | null>(null);
@@ -34,6 +35,7 @@ function Root() {
34
35
36
return (
37
<StrictMode>
38
+ <ThemeInit />
39
<GoogleOAuthProvider clientId={googleClientId}>
40
<App />
41
</GoogleOAuthProvider>
0 commit comments