Added clip view

This commit is contained in:
Romain CLEMENT 2023-04-03 19:08:27 +02:00
parent 615162b2b9
commit 3b3175f1ed

17
src/clip/ClipView.tsx Normal file
View File

@ -0,0 +1,17 @@
import React from 'react';
import { ScrollView, Text } from 'react-native';
import ClipList from './ClipList';
export default class ClipView extends React.Component<any, any> {
constructor(props: any) {
super(props);
}
render(): JSX.Element {
return <ScrollView>
<Text style={{fontWeight:'bold',fontSize:30, margin:20}}>Local Clipboard</Text>
<ClipList clips={[{"title":"abcd"}, {"title": "j'aime manger mon caca"}]} />
</ScrollView>;
}
}