1234567891011121314151617181920212223242526272829303132 |
- import React, { useCallback } from 'react';
- import { useDispatch } from 'react-redux';
-
- import Button from '../../../base/ui/components/native/Button';
- import { BUTTON_TYPES } from '../../../base/ui/constants.native';
- import { createBreakoutRoom } from '../../actions';
-
- import styles from './styles';
-
- /**
- * Button to add a breakout room.
- *
- * @returns {JSX.Element} - The add breakout room button.
- */
- const AddBreakoutRoomButton = () => {
- const dispatch = useDispatch();
-
- const onAdd = useCallback(() =>
- dispatch(createBreakoutRoom())
- , [ dispatch ]);
-
- return (
- <Button
- accessibilityLabel = 'breakoutRooms.actions.add'
- labelKey = 'breakoutRooms.actions.add'
- onClick = { onAdd }
- style = { styles.button }
- type = { BUTTON_TYPES.SECONDARY } />
- );
- };
-
- export default AddBreakoutRoomButton;
|