Added clip view
This commit is contained in:
parent
615162b2b9
commit
3b3175f1ed
17
src/clip/ClipView.tsx
Normal file
17
src/clip/ClipView.tsx
Normal 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>;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user