Files
dify/web/app/(commonLayout)/datasets/page.tsx

8 lines
133 B
TypeScript
Raw Normal View History

import List from '../../components/datasets/list'
2023-05-15 08:51:32 +08:00
const DatasetList = async () => {
return <List />
2023-05-15 08:51:32 +08:00
}
export default DatasetList