page.tsx 183 B

1234567891011121314
  1. import Container from './Container'
  2. const AppList = async () => {
  3. return (
  4. <Container />
  5. )
  6. }
  7. export const metadata = {
  8. title: 'Datasets - Dify',
  9. }
  10. export default AppList