i notice that below code should be js coding style, how could i write in the tsx style
import React, { Children } from 'react';import {Text,StyleSheet} from 'react-native';
export function Heading ({children, props}){ return <Text{...props}>{children}</Text>}