mirror of
https://github.com/langgenius/dify.git
synced 2026-05-05 18:08:07 +08:00
18 lines
284 B
TypeScript
18 lines
284 B
TypeScript
'use client'
|
|
import Header from './components/header'
|
|
// TODO: Filter
|
|
import List from './components/list'
|
|
|
|
const Page = () => {
|
|
return (
|
|
<div>
|
|
<Header appNum={5} publishedNum={3}/>
|
|
<div>
|
|
<List list={[]} />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Page
|