Files
jitsi-meet/react/features/base/media/components/native/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
224 B
JavaScript

import { StyleSheet } from 'react-native';
/**
* Make {@code Video} fill its container.
*/
const video = {
flex: 1
};
/**
* The styles of the feature base/media.
*/
export default StyleSheet.create({
video
});