mirror of
https://github.com/langgenius/dify.git
synced 2026-08-28 17:56:51 +08:00
18 lines
320 B
TypeScript
18 lines
320 B
TypeScript
import React from 'react'
|
|
import Main from '@/app/components/datasets/hit-testing'
|
|
|
|
type Props = {
|
|
params: Promise<{ datasetId: string }>
|
|
}
|
|
|
|
const HitTesting = async ({
|
|
params,
|
|
}: Props) => {
|
|
const datasetId = (await params).datasetId
|
|
return (
|
|
<Main datasetId={datasetId} />
|
|
)
|
|
}
|
|
|
|
export default HitTesting
|