We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5486c2 commit da0f6d9Copy full SHA for da0f6d9
1 file changed
LocalMind-Frontend/src/app/App.tsx
@@ -2,6 +2,7 @@ import React, { useState } from 'react'
2
import MainLoader from '../features/Dashboard/V1/Component/Loader/MainLoader'
3
import Navbar from '../shared/component/v1/Navbar'
4
import AppRoutes from './routes/AppRoutes'
5
+import Footer from '../shared/component/v1/Footer'
6
7
const App: React.FC = () => {
8
const [Loader, setLoader] = useState(true)
@@ -16,6 +17,8 @@ const App: React.FC = () => {
16
17
18
{/* All application routes including Chat Page */}
19
<AppRoutes />
20
+
21
+ <Footer />
22
</>
23
)
24
}
0 commit comments