Add audio/video device options in call interface

Detect audio and video devices and show the options in the expand menus of the calling buttons in the call interface.
The options are not clickable for now, this will be implemented in https://git.jami.net/savoirfairelinux/jami-web/-/issues/146

GitLab: #98
Change-Id: I51ebf9ec90820db37e0d36b4ac9f57f119119da3
diff --git a/client/src/pages/CallInterface.tsx b/client/src/pages/CallInterface.tsx
index 5759721..3484858 100644
--- a/client/src/pages/CallInterface.tsx
+++ b/client/src/pages/CallInterface.tsx
@@ -154,7 +154,7 @@
           Call
         </Button>
         <CallingMicButton />
-        <CallingEndButton hidden={false} />
+        <CallingEndButton />
         <CallingVideoCameraButton />
       </Stack>
     </Card>
@@ -229,11 +229,11 @@
         {initialMeasurementDone &&
           displayedButtons.map((SecondaryButton, i) => (
             <Fragment key={i}>
-              <SecondaryButton hidden={false} />
+              <SecondaryButton />
             </Fragment>
           ))}
         {(!!hiddenButtons.length || !initialMeasurementDone) && (
-          <CallingMoreVerticalButton hidden={true} onClick={() => setHiddenMenuVisible(!hiddenMenuVisible)} />
+          <CallingMoreVerticalButton isVertical onClick={() => setHiddenMenuVisible(!hiddenMenuVisible)} />
         )}
       </Stack>
 
@@ -248,7 +248,7 @@
             >
               {hiddenButtons.map((SecondaryButton, i) => (
                 <Fragment key={i}>
-                  <SecondaryButton hidden={true} />
+                  <SecondaryButton vertical />
                 </Fragment>
               ))}
             </Stack>