mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-19 05:25:54 +08:00
17 lines
275 B
TypeScript
17 lines
275 B
TypeScript
import React from 'react'
|
|
import Main from '@/app/components/datasets/hit-testing'
|
|
|
|
type Props = {
|
|
params: { datasetId: string }
|
|
}
|
|
|
|
const HitTesting = ({
|
|
params: { datasetId },
|
|
}: Props) => {
|
|
return (
|
|
<Main datasetId={datasetId} />
|
|
)
|
|
}
|
|
|
|
export default HitTesting
|