diff --git a/client/src/pages/PedigreeView.jsx b/client/src/pages/PedigreeView.jsx new file mode 100644 index 0000000..328ba25 --- /dev/null +++ b/client/src/pages/PedigreeView.jsx @@ -0,0 +1,19 @@ +import { useParams } from 'react-router-dom' +import { GitBranch } from 'lucide-react' + +function PedigreeView() { + const { id } = useParams() + + return ( +
+

Pedigree Chart

+
+ +

Interactive Pedigree Visualization

+

Coming soon - React D3 Tree integration for dog ID: {id}

+
+
+ ) +} + +export default PedigreeView \ No newline at end of file