Batch of views getting replaceableComponent decorators

This commit is contained in:
Travis Ralston 2021-03-08 20:20:07 -07:00
parent c5935dbc61
commit 41576954fd
49 changed files with 98 additions and 1 deletions

View file

@ -16,6 +16,7 @@ limitations under the License.
import * as React from "react";
import AccessibleButton from "../elements/AccessibleButton";
import {replaceableComponent} from "../../../utils/replaceableComponent";
const BUTTONS = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '*', '0', '#'];
@ -59,6 +60,7 @@ interface IProps {
onDialPress?: (string) => void;
}
@replaceableComponent("views.voip.Dialpad")
export default class Dialpad extends React.PureComponent<IProps> {
render() {
const buttonNodes = [];