From 878ee6ef226fdcdaf38ad2fa52a720b2923a5dda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=87=91=E4=BC=9F=E5=BC=BA?= Date: Mon, 15 May 2023 16:42:47 +0800 Subject: [PATCH] chore: temp --- web/app/(commonLayout)/explore/apps/page.tsx | 12 ++++++++++++ .../explore/installed/[appId]/page.tsx | 12 ++++++++++++ web/app/(commonLayout)/explore/layout.tsx | 16 ++++++++++++++++ web/app/components/explore/sidebar/index.tsx | 14 ++++++++++++++ 4 files changed, 54 insertions(+) create mode 100644 web/app/(commonLayout)/explore/apps/page.tsx create mode 100644 web/app/(commonLayout)/explore/installed/[appId]/page.tsx create mode 100644 web/app/(commonLayout)/explore/layout.tsx create mode 100644 web/app/components/explore/sidebar/index.tsx diff --git a/web/app/(commonLayout)/explore/apps/page.tsx b/web/app/(commonLayout)/explore/apps/page.tsx new file mode 100644 index 0000000000..fd776cf638 --- /dev/null +++ b/web/app/(commonLayout)/explore/apps/page.tsx @@ -0,0 +1,12 @@ +import React, { FC } from 'react' + +export interface IAppsProps { } + +const Apps: FC = ({ }) => { + return ( +
+ apps +
+ ) +} +export default React.memo(Apps) diff --git a/web/app/(commonLayout)/explore/installed/[appId]/page.tsx b/web/app/(commonLayout)/explore/installed/[appId]/page.tsx new file mode 100644 index 0000000000..f55c683edc --- /dev/null +++ b/web/app/(commonLayout)/explore/installed/[appId]/page.tsx @@ -0,0 +1,12 @@ +import React, { FC } from 'react' + +export interface IInstalledAppProps { } + +const InstalledApp: FC = ({ }) => { + return ( +
+ InstalledApp +
+ ) +} +export default React.memo(InstalledApp) diff --git a/web/app/(commonLayout)/explore/layout.tsx b/web/app/(commonLayout)/explore/layout.tsx new file mode 100644 index 0000000000..7164a00be0 --- /dev/null +++ b/web/app/(commonLayout)/explore/layout.tsx @@ -0,0 +1,16 @@ +import type { FC } from 'react' +import React from 'react' + +export type IAppDetail = { + children: React.ReactNode +} + +const AppDetail: FC = ({ children }) => { + return ( + <> + {children} + + ) +} + +export default React.memo(AppDetail) diff --git a/web/app/components/explore/sidebar/index.tsx b/web/app/components/explore/sidebar/index.tsx new file mode 100644 index 0000000000..f8edf19e25 --- /dev/null +++ b/web/app/components/explore/sidebar/index.tsx @@ -0,0 +1,14 @@ +import React, { FC } from 'react' +import s from './style.module.css' +export interface ISideBarProps { + +} +const SideBar: FC = ({ +}) => { + return ( +
+ 111 +
+ ) +} +export default React.memo(SideBar)