@sendbird/uikit-react-native
Version:
Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
22 lines • 525 B
JavaScript
import React from 'react';
import { View } from 'react-native';
import { createStyleSheet, useUIKitTheme } from '@sendbird/uikit-react-native-foundation';
const ProviderLayout = ({
children
}) => {
const {
colors
} = useUIKitTheme();
return /*#__PURE__*/React.createElement(View, {
style: [styles.view, {
backgroundColor: colors.background
}]
}, children);
};
const styles = createStyleSheet({
view: {
flex: 1
}
});
export default ProviderLayout;
//# sourceMappingURL=ProviderLayout.js.map