mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-18 05:35:57 +08:00
12 lines
149 B
TypeScript
12 lines
149 B
TypeScript
import React from 'react'
|
|
|
|
type Props = {}
|
|
|
|
const page = (props: Props) => {
|
|
return (
|
|
<div>dataset detail api</div>
|
|
)
|
|
}
|
|
|
|
export default page
|