mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 21:07:47 +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
224 B
JavaScript
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
|
|
});
|