Files
jitsi-meet/react/features/base/participants/components/styles.js
Lyubo Marinov ca94563c51 [RN] Coding style
The files styles.js are used (pretty much) on React Native only and each
of them exports 1 name. Export it as default to cut down on source code.
2017-06-10 18:07:51 -05:00

16 lines
308 B
JavaScript

import { createStyleSheet } from '../../styles';
/**
* The styles of the feature base/participants.
*/
export default createStyleSheet({
/**
* {@code ParticipantView} style.
*/
participantView: {
alignItems: 'stretch',
flex: 1,
justifyContent: 'center'
}
});