dify/web/app/components/datasets/api/index.tsx
2023-05-15 08:51:32 +08:00

12 lines
138 B
TypeScript

import React from 'react'
type Props = {}
const index = (props: Props) => {
return (
<div>index</div>
)
}
export default index