ClipSync-Mobile/clip/ClipElement.tsx
2023-04-03 12:10:21 +02:00

15 lines
318 B
TypeScript

import React from 'react';
import { View, Text } from 'react-native';
export default class ClipElement extends React.Component<any, any> {
constructor(props: any) {
super(props);
}
render(): JSX.Element {
return <View>
<Text>{this.props.title}</Text>
</View>;
}
}