{error}
+{applicationsDescription}
+{error}
+
- {yaml}
-
- );
-};
-
-export default Yaml;
diff --git a/app/src/components/resources/Resource.tsx b/app/src/components/resources/drawer/DrawerPanel.tsx
similarity index 58%
rename from app/src/components/resources/Resource.tsx
rename to app/src/components/resources/drawer/DrawerPanel.tsx
index 6766753cb..7f00fac4c 100644
--- a/app/src/components/resources/Resource.tsx
+++ b/app/src/components/resources/drawer/DrawerPanel.tsx
@@ -12,34 +12,38 @@ import React, { useState } from 'react';
import { IRow } from '@patternfly/react-table';
import yaml from 'js-yaml';
-import Events from './Events';
-import Yaml from './Yaml';
+import Events from 'components/resources/drawer/Events';
+import Title from 'components/shared/Title';
+import Yaml from 'components/resources/drawer/Yaml';
interface IResourceProps {
resource: IRow;
- columns: string[];
close: () => void;
}
-const Resource: React.FunctionComponent