This commit is contained in:
Joel
2025-11-13 14:53:41 +08:00
parent ca7794305b
commit 1e127df4ab
5 changed files with 36 additions and 1 deletions

View File

@ -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>

View 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)

View 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)