mirror of https://github.com/langgenius/dify.git
chore: temp
This commit is contained in:
parent
2e1cd3db28
commit
878ee6ef22
|
|
@ -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)
|
||||||
|
|
@ -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)
|
||||||
|
|
@ -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)
|
||||||
|
|
@ -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