mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
12 lines
302 B
JavaScript
12 lines
302 B
JavaScript
import React from "react"
|
|
import { useParams } from "react-router"
|
|
import RepositoryViewer from "../components/providers/RepositoryViewer"
|
|
|
|
|
|
export default function PageRepositoryAnalyze({...props }) {
|
|
const { id } = useParams()
|
|
|
|
return (
|
|
<RepositoryViewer id={id} {...props}/>
|
|
)
|
|
}
|