mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-20 07:27:48 +00:00
feat(prejoin_page) Add settings buttons
This reverts commit faf24ca7ec.
This commit is contained in:
committed by
Saúl Ibarra Corretgé
parent
c170970992
commit
1b05d7269c
26
react/features/settings/components/web/audio/TestButton.js
Normal file
26
react/features/settings/components/web/audio/TestButton.js
Normal file
@@ -0,0 +1,26 @@
|
||||
// @flow
|
||||
|
||||
import React from 'react';
|
||||
|
||||
type Props = {
|
||||
|
||||
/**
|
||||
* Click handler for the button.
|
||||
*/
|
||||
onClick: Function,
|
||||
};
|
||||
|
||||
/**
|
||||
* React {@code Component} representing an button used for testing output sound.
|
||||
*
|
||||
* @returns { ReactElement}
|
||||
*/
|
||||
export default function TestButton({ onClick }: Props) {
|
||||
return (
|
||||
<div
|
||||
className = 'audio-preview-test-button'
|
||||
onClick = { onClick }>
|
||||
Test
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user