diff --git a/packages/bruno-app/src/components/Environments/EnvironmentSelector/EnvironmentListContent/index.js b/packages/bruno-app/src/components/Environments/EnvironmentSelector/EnvironmentListContent/index.js new file mode 100644 index 000000000..5aa1cde1b --- /dev/null +++ b/packages/bruno-app/src/components/Environments/EnvironmentSelector/EnvironmentListContent/index.js @@ -0,0 +1,60 @@ +import React from 'react'; +import { IconPlus, IconDownload, IconSettings } from '@tabler/icons'; + +const EnvironmentListContent = ({ + environments, + activeEnvironmentUid, + description, + onEnvironmentSelect, + onSettingsClick, + onCreateClick, + onImportClick +}) => { + return ( +
{description}
+{activeEnvironment ? activeEnvironment.name : 'No Environment'}
+