chore: temp

This commit is contained in:
金伟强 2023-05-15 16:42:47 +08:00
parent 2e1cd3db28
commit 878ee6ef22
4 changed files with 54 additions and 0 deletions

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

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

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

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