UNPKG

fastcomments-react-native-sdk

Version:

React Native FastComments Components. Add live commenting to any React Native application.

6 lines (5 loc) 383 B
import { jsx as _jsx } from "react/jsx-runtime"; import { Text, View } from "react-native"; export function CommentAreaMessage({ message, styles }) { return _jsx(View, { style: styles.commentAreaMessage?.wrapper, children: _jsx(View, { style: styles.commentAreaMessage?.message, children: _jsx(Text, { style: styles.commentAreaMessage?.messageText, children: message }) }) }); }