mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
11 lines
No EOL
359 B
TypeScript
11 lines
No EOL
359 B
TypeScript
import CertificateVerificationPage from '@components/Pages/Certificate/CertificateVerificationPage'
|
|
|
|
interface CertificateVerifyPageProps {
|
|
params: {
|
|
certificateUuid: string
|
|
}
|
|
}
|
|
|
|
export default function CertificateVerifyPage({ params }: CertificateVerifyPageProps) {
|
|
return <CertificateVerificationPage certificateUuid={params.certificateUuid} />
|
|
}
|