fix api calls for contacts CRUD and start adding styles for dropdown in conversation list

Change-Id: I7874ddef22e95a26b4ab99b3ae974b204e678c59
diff --git a/client/src/App.js b/client/src/App.js
index b10d303..77bf4ea 100644
--- a/client/src/App.js
+++ b/client/src/App.js
@@ -19,13 +19,7 @@
 import WelcomeAnimation from './components/welcome'
 import defaultTheme from './themes/default'
 import ContactList from './components/ContactList';
-
-const theme = createTheme();
-const useStyles = makeStyles((theme) => {
-  root: {
-    // some CSS that access to theme
-  }
-})
+import { ThemeDemonstrator } from './themes/ThemeDemonstrator';
 
 // import { useSelector, useDispatch } from 'react-redux'
 // import { useAppSelector, useAppDispatch } from '../redux/hooks'
@@ -88,6 +82,7 @@
           <Route path="jami" element={<JamiAccountDialog />} />
         </Route>
         <Route path="/Contacts" element={<ContactList />} />
+        <Route path="/Theme" element={<ThemeDemonstrator />} />
         <Route path="/setup" element={<ServerSetup />} />
         <Route path="/" index element={<Home />} />
         <Route path="*" element={<NotFoundPage />} />