mirror of
https://github.com/langgenius/dify.git
synced 2026-05-13 08:57:28 +08:00
Agent-Logs-Url: https://github.com/langgenius/dify/sessions/489dd945-dfff-462a-9c76-d29fdaa55de2 Co-authored-by: FFXN <31929997+FFXN@users.noreply.github.com>
13 lines
349 B
TypeScript
13 lines
349 B
TypeScript
import Apps from '@/app/components/apps'
|
|
import SnippetAndEvaluationPlanGuard from '@/app/components/billing/snippet-and-evaluation-plan-guard'
|
|
|
|
const SnippetsPage = () => {
|
|
return (
|
|
<SnippetAndEvaluationPlanGuard fallbackHref="/apps">
|
|
<Apps pageType="snippets" />
|
|
</SnippetAndEvaluationPlanGuard>
|
|
)
|
|
}
|
|
|
|
export default SnippetsPage
|