Skip to content

Commit 0075b0a

Browse files
committed
feat(footer): responsive footer for small screens - i133
Signed-off-by: Dharma Teja <dteja2468@gmail.com>
1 parent 59f54e5 commit 0075b0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/App.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useEffect, useState } from "react";
2-
import { App as AntdApp, Layout, Row, Col, Collapse, Grid } from "antd";
2+
import { App as AntdApp, Layout, Row, Col, Collapse } from "antd";
33
import { Routes, Route, useSearchParams } from "react-router-dom";
44
import Navbar from "./components/Navbar";
55
import Footer from "./components/Footer";
@@ -17,7 +17,7 @@ import LearnContent from "./components/Content";
1717
import FloatingFAB from "./components/FabButton";
1818

1919
const { Content } = Layout;
20-
const { useBreakpoint } = Grid;
20+
2121

2222
const App = () => {
2323
const init = useAppStore((state) => state.init);
@@ -80,7 +80,7 @@ const App = () => {
8080
}
8181
}, [searchParams]);
8282

83-
const screens = useBreakpoint();
83+
8484

8585
const panels = [
8686
{

0 commit comments

Comments
 (0)