Fix formatting

This commit is contained in:
Tiago Jacobs 2022-02-13 12:15:36 -03:00
parent f10c9bf249
commit 70b0d8a096

View File

@ -2,7 +2,11 @@ import React from 'react';
import SystemBroadcastPicker from './ios-native-components/BBBN_SystemBroadcastPicker'; import SystemBroadcastPicker from './ios-native-components/BBBN_SystemBroadcastPicker';
const BroadcastPicker = ({children, title}): Node => { const BroadcastPicker = ({children, title}): Node => {
return <SystemBroadcastPicker style={{marginTop: 50, height: 50, widht: 50, backgroundColor: '#EEE'}} />; return (
<SystemBroadcastPicker
style={{marginTop: 50, height: 50, widht: 50, backgroundColor: '#EEE'}}
/>
);
}; };
export default BroadcastPicker; export default BroadcastPicker;