mirror of
https://github.com/langgenius/dify.git
synced 2026-05-10 05:56:31 +08:00
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
|