From 466f61d04493c0cb87aeb50a553027e06ad936a2 Mon Sep 17 00:00:00 2001 From: StyleZhang Date: Sat, 12 Oct 2024 11:05:03 +0800 Subject: [PATCH] relocate file --- web/app/(commonLayout)/plugins/page.tsx | 4 ++-- .../plugins/Install-plugin-dropdown.tsx | 0 web/app/{(commonLayout) => components}/plugins/container.tsx | 0 .../{(commonLayout) => components}/plugins/plugins-panel.tsx | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename web/app/{(commonLayout) => components}/plugins/Install-plugin-dropdown.tsx (100%) rename web/app/{(commonLayout) => components}/plugins/container.tsx (100%) rename web/app/{(commonLayout) => components}/plugins/plugins-panel.tsx (100%) diff --git a/web/app/(commonLayout)/plugins/page.tsx b/web/app/(commonLayout)/plugins/page.tsx index 830efd7159..981319eb4a 100644 --- a/web/app/(commonLayout)/plugins/page.tsx +++ b/web/app/(commonLayout)/plugins/page.tsx @@ -1,5 +1,5 @@ -import PluginsPanel from './plugins-panel' -import Container from './container' +import PluginsPanel from '@/app/components/plugins/plugins-panel' +import Container from '@/app/components/plugins/container' import Marketplace from '@/app/components/plugins/marketplace' const PluginList = async () => { diff --git a/web/app/(commonLayout)/plugins/Install-plugin-dropdown.tsx b/web/app/components/plugins/Install-plugin-dropdown.tsx similarity index 100% rename from web/app/(commonLayout)/plugins/Install-plugin-dropdown.tsx rename to web/app/components/plugins/Install-plugin-dropdown.tsx diff --git a/web/app/(commonLayout)/plugins/container.tsx b/web/app/components/plugins/container.tsx similarity index 100% rename from web/app/(commonLayout)/plugins/container.tsx rename to web/app/components/plugins/container.tsx diff --git a/web/app/(commonLayout)/plugins/plugins-panel.tsx b/web/app/components/plugins/plugins-panel.tsx similarity index 100% rename from web/app/(commonLayout)/plugins/plugins-panel.tsx rename to web/app/components/plugins/plugins-panel.tsx