+
diff --git a/libs/remix-ui/workspace/src/lib/components/file-explorer-menu.tsx b/libs/remix-ui/workspace/src/lib/components/file-explorer-menu.tsx
index ba158f7033..5434ca8abf 100644
--- a/libs/remix-ui/workspace/src/lib/components/file-explorer-menu.tsx
+++ b/libs/remix-ui/workspace/src/lib/components/file-explorer-menu.tsx
@@ -39,6 +39,20 @@ export const FileExplorerMenu = (props: FileExplorerMenuProps) => {
icon: 'far fa-folder-upload',
placement: 'top',
platforms:[appPlatformTypes.web]
+ },
+ {
+ action: 'importFromIpfs',
+ title: 'Import files from ipfs',
+ icon: 'far fa-folder-arrow-down',
+ placement: 'top',
+ platforms: [appPlatformTypes.web, appPlatformTypes.desktop]
+ },
+ {
+ action: 'importFromHttps',
+ title: 'Import files with https',
+ icon: 'far fa-cloud-arrow-down',
+ placement: 'top',
+ platforms: [appPlatformTypes.web, appPlatformTypes.desktop]
}
].filter(
(item) =>
diff --git a/libs/remix-ui/workspace/src/lib/remix-ui-workspace.tsx b/libs/remix-ui/workspace/src/lib/remix-ui-workspace.tsx
index 55f44d1763..d57b4618a2 100644
--- a/libs/remix-ui/workspace/src/lib/remix-ui-workspace.tsx
+++ b/libs/remix-ui/workspace/src/lib/remix-ui-workspace.tsx
@@ -240,6 +240,14 @@ export function Workspace() {
})
}
+ const importFromIpfs = () => {
+
+ }
+
+ const importFromHttps = () => {
+
+ }
+
const cloneGitRepository = () => {
global.modal(
intl.formatMessage({ id: 'filePanel.workspace.clone' }),