From 3a1f01535cded4cb55776aa71bc2b5470adff1aa Mon Sep 17 00:00:00 2001 From: Himanshu Narware <83147410+HimanshuNarware@users.noreply.github.com> Date: Sun, 8 Sep 2024 15:53:11 +0530 Subject: [PATCH] Update Home.js --- frontend/src/Component/Home.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/Component/Home.js b/frontend/src/Component/Home.js index 6a094987..92aaab78 100644 --- a/frontend/src/Component/Home.js +++ b/frontend/src/Component/Home.js @@ -25,7 +25,7 @@ function Home(props) { } const [currentPage, setCurrentPage] = useState(1); - const postPerpage = 16; + const postPerpage = 32; const lastPostIndex = currentPage * postPerpage; const firstPostIndex = lastPostIndex - postPerpage; const [dataBaseData, setDataBaseData] = useState([]); @@ -300,4 +300,4 @@ function Home(props) { ); } -export default Home; \ No newline at end of file +export default Home;