We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb4ad0b commit b8a830bCopy full SHA for b8a830b
1 file changed
src/app.tsx
@@ -1,5 +1,5 @@
1
import { AppWindowIcon, CodeIcon } from "lucide-react";
2
-import { useState } from "react";
+import { useEffect, useState } from "react";
3
import { useTranslation } from "react-i18next";
4
import { FileExplorer } from "@/components/features/file-explorer";
5
import { Hero } from "@/components/global/hero";
@@ -60,6 +60,10 @@ const App: React.FC = () => {
60
return result;
61
});
62
63
+ useEffect(() => {
64
+ console.log(parseTemplate());
65
+ }, []);
66
+
67
return (
68
<LangProvider>
69
<IndexProvider path={data.path} files={data.files}>
0 commit comments