mirror of
https://github.com/langgenius/dify.git
synced 2026-03-31 19:11:10 +08:00
chore: temp
This commit is contained in:
parent
2e1cd3db28
commit
878ee6ef22
12
web/app/(commonLayout)/explore/apps/page.tsx
Normal file
12
web/app/(commonLayout)/explore/apps/page.tsx
Normal file
@ -0,0 +1,12 @@
|
||||
import React, { FC } from 'react'
|
||||
|
||||
export interface IAppsProps { }
|
||||
|
||||
const Apps: FC<IAppsProps> = ({ }) => {
|
||||
return (
|
||||
<div>
|
||||
apps
|
||||
</div>
|
||||
)
|
||||
}
|
||||
export default React.memo(Apps)
|
||||
12
web/app/(commonLayout)/explore/installed/[appId]/page.tsx
Normal file
12
web/app/(commonLayout)/explore/installed/[appId]/page.tsx
Normal file
@ -0,0 +1,12 @@
|
||||
import React, { FC } from 'react'
|
||||
|
||||
export interface IInstalledAppProps { }
|
||||
|
||||
const InstalledApp: FC<IInstalledAppProps> = ({ }) => {
|
||||
return (
|
||||
<div>
|
||||
InstalledApp
|
||||
</div>
|
||||
)
|
||||
}
|
||||
export default React.memo(InstalledApp)
|
||||
16
web/app/(commonLayout)/explore/layout.tsx
Normal file
16
web/app/(commonLayout)/explore/layout.tsx
Normal file
@ -0,0 +1,16 @@
|
||||
import type { FC } from 'react'
|
||||
import React from 'react'
|
||||
|
||||
export type IAppDetail = {
|
||||
children: React.ReactNode
|
||||
}
|
||||
|
||||
const AppDetail: FC<IAppDetail> = ({ children }) => {
|
||||
return (
|
||||
<>
|
||||
{children}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
export default React.memo(AppDetail)
|
||||
14
web/app/components/explore/sidebar/index.tsx
Normal file
14
web/app/components/explore/sidebar/index.tsx
Normal file
@ -0,0 +1,14 @@
|
||||
import React, { FC } from 'react'
|
||||
import s from './style.module.css'
|
||||
export interface ISideBarProps {
|
||||
|
||||
}
|
||||
const SideBar: FC<ISideBarProps> = ({
|
||||
}) => {
|
||||
return (
|
||||
<div>
|
||||
111
|
||||
</div>
|
||||
)
|
||||
}
|
||||
export default React.memo(SideBar)
|
||||
Loading…
Reference in New Issue
Block a user