lab3.2/src/pages/LandingPage.jsx
2024-10-22 05:37:53 +05:30

17 lines
260 B
JavaScript

import React from "react";
import BookList from "../books/BookList";
import Users from "../users/Users";
const LandingPage = () => {
return (
<>
{/*<BookList />*/}
<Users />
</>
);
};
export default LandingPage;