mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 13:37:51 +00:00
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.
16 lines
308 B
JavaScript
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'
|
|
}
|
|
});
|