dify/web/app/(commonLayout)/datasets/page.tsx
zxhlyh 9dbb8acd4b
Feat/dataset support api service (#1240)
Co-authored-by: Joel <iamjoel007@gmail.com>
Co-authored-by: crazywoola <427733928@qq.com>
2023-09-27 16:06:49 +08:00

14 lines
183 B
TypeScript

import Container from './Container'
const AppList = async () => {
return (
<Container />
)
}
export const metadata = {
title: 'Datasets - Dify',
}
export default AppList