This commit is contained in:
2024-09-10 16:23:09 +00:00
parent ba6e5605c9
commit 2dfff9f9d6
6 changed files with 88 additions and 51 deletions

View File

@@ -0,0 +1,16 @@
"use client";
import React, { Children } from "react";
import { useParams } from "next/navigation";
interface Props {
children: React.ReactNode;
}
const BreadCrumbs = ({ children }: Props) => {
const { serverid, path } = useParams();
return <div>{children}</div>;
};
export default BreadCrumbs;