mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 02:18:08 +08:00
chore
This commit is contained in:
@ -11,6 +11,7 @@ import { ModalContextProvider } from '@/context/modal-context'
|
||||
import GotoAnything from '@/app/components/goto-anything'
|
||||
import Zendesk from '@/app/components/base/zendesk'
|
||||
import Splash from '../components/splash'
|
||||
import Test from '@edition/test'
|
||||
|
||||
const Layout = ({ children }: { children: ReactNode }) => {
|
||||
return (
|
||||
@ -21,6 +22,7 @@ const Layout = ({ children }: { children: ReactNode }) => {
|
||||
<EventEmitterContextProvider>
|
||||
<ProviderContextProvider>
|
||||
<ModalContextProvider>
|
||||
<Test />
|
||||
<HeaderWrapper>
|
||||
<Header />
|
||||
</HeaderWrapper>
|
||||
|
||||
10
web/app/edition/community/test.tsx
Normal file
10
web/app/edition/community/test.tsx
Normal file
@ -0,0 +1,10 @@
|
||||
'use client'
|
||||
import type { FC } from 'react'
|
||||
import React from 'react'
|
||||
|
||||
const Test: FC = () => {
|
||||
return (
|
||||
<div>Community</div>
|
||||
)
|
||||
}
|
||||
export default React.memo(Test)
|
||||
10
web/app/edition/saas/test.tsx
Normal file
10
web/app/edition/saas/test.tsx
Normal file
@ -0,0 +1,10 @@
|
||||
'use client'
|
||||
import type { FC } from 'react'
|
||||
import React from 'react'
|
||||
|
||||
const Test: FC = () => {
|
||||
return (
|
||||
<div>SaaS</div>
|
||||
)
|
||||
}
|
||||
export default React.memo(Test)
|
||||
Reference in New Issue
Block a user