Files
CMS-Client/pages/index.js
T
2023-10-22 23:08:34 -07:00

13 lines
261 B
JavaScript

import { useRouter } from "next/router";
import ECommerce from "./ecommerce";
export default function Home() {
const router = useRouter();
console.log("Check pathname: " + router.pathname)
if (router.pathname === "/") {
return <ECommerce />;
}
}