feat(prejoin_page) Add settings buttons

This reverts commit faf24ca7ec.
This commit is contained in:
Vlad Piersec
2020-03-30 17:17:18 +03:00
committed by Saúl Ibarra Corretgé
parent c170970992
commit 1b05d7269c
40 changed files with 2070 additions and 11 deletions

View 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>
);
}