diff --git a/src/app/components/Actions/Action.tsx b/src/app/components/Actions/Action.tsx
index 34f84b740..31dd368ae 100644
--- a/src/app/components/Actions/Action.tsx
+++ b/src/app/components/Actions/Action.tsx
@@ -9,7 +9,7 @@ import { ActionProps, OptionsCursorTrueWithMargin } from '../../FrontendTypes';
import { useDispatch } from 'react-redux';
/*
- This render's the individual snapshot components on the left side column
+ This renders the individual snapshot components on the left side column
*/
/**
diff --git a/src/app/components/Actions/DropDown.tsx b/src/app/components/Actions/DropDown.tsx
new file mode 100644
index 000000000..9459d8b1e
--- /dev/null
+++ b/src/app/components/Actions/DropDown.tsx
@@ -0,0 +1,25 @@
+import Select from 'react-select';
+import React, { useEffect, useState } from 'react';
+
+const DropDown = (): JSX.Element => {
+ const [hook, setHook] = useState('useState');
+
+ const handleChange = (selectedHook: {hooks:string}) => {
+ setHook(selectedHook);
+ }
+
+const options = [
+ {value: 'useState', label: 'useState'},
+ {value: 'useReducer', label: 'useReducer'},
+ {value: 'useContext', label: 'useContext'}
+];
+
+ return (
+
+ )
+}
+export default DropDown;
\ No newline at end of file
diff --git a/src/app/components/Actions/SwitchApp.tsx b/src/app/components/Actions/SwitchApp.tsx
index 2f24261c3..34af0f721 100644
--- a/src/app/components/Actions/SwitchApp.tsx
+++ b/src/app/components/Actions/SwitchApp.tsx
@@ -28,6 +28,7 @@ const SwitchAppDropdown = (): JSX.Element => {
value: currentTab,
label: tabs[currentTab].title,
};
+ console.log('tabs', tabs)
const customStyles: {} = {
menu: (provided, state): {} => {
@@ -39,6 +40,11 @@ const SwitchAppDropdown = (): JSX.Element => {
},
};
+ const customComponents = {
+ DropdownIndicator: () => null,
+ IndicatorSeparator: () => null, // Removes the separator line
+ };
+
return (