@fto-consult/expo-ui
Version:
Bibliothèque de composants UI Expo,react-native
13 lines • 663 B
JavaScript
// Copyright 2023 @fto-consult/Boris Fouomene. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
import React from "react";
import View from "$ecomponents/View";
function TableCellContentComponent({children,columnField,style,colSpan,width,...rest}){
return (<View testID={"RN_TableRowCellContentComponent"} {...rest} style={[style,width && {width}]}>
{children}
</View>);
}
//const TableCellContentComponent = React.memo(TableCellContentComponent);;
export default TableCellContentComponent;
TableCellContentComponent.displayName = "TableCellContentComponent";