You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcgj-dify-1.7.0/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/logs/page.tsx

12 lines
270 B
TypeScript

import React from 'react'
import Main from '@/app/components/app/log-annotation'
import { PageType } from '@/app/components/app/configuration/toolbox/annotation/type'
const Logs = async () => {
return (
<Main pageType={PageType.log} />
)
}
export default Logs