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

14 lines
183 B
TypeScript
Raw Normal View History

import Container from './Container'
2023-05-15 08:51:32 +08:00
const AppList = async () => {
return (
<Container />
2023-05-15 08:51:32 +08:00
)
}
export const metadata = {
title: 'Datasets - Dify',
}
export default AppList