import React from 'react'; import type { CSSProperties } from 'react'; import { Row } from '@feewee/h5app-common'; import './style.less'; interface ComponentProps { title: string; content: string | number; rowStyle?: CSSProperties; titleStyle?: CSSProperties; contentStyle?: CSSProperties; } export default function RowText({ title, content, rowStyle, titleStyle, contentStyle }: ComponentProps) { return ( {title}: {content} ); }