mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
Contributing all buttons in one place goes against the designs that we set out at the beginning of the project's rewrite and that multiple of us have been following since then.
8 lines
376 B
JavaScript
8 lines
376 B
JavaScript
// @flow
|
|
|
|
export { default as AbstractButton } from './AbstractButton';
|
|
export type { Props as AbstractButtonProps } from './AbstractButton';
|
|
export { default as AbstractAudioMuteButton } from './AbstractAudioMuteButton';
|
|
export { default as AbstractHangupButton } from './AbstractHangupButton';
|
|
export { default as AbstractVideoMuteButton } from './AbstractVideoMuteButton';
|