From 3b3175f1ed62463e5fe8fc3780b6677ee12e2812 Mon Sep 17 00:00:00 2001 From: Romain CLEMENT Date: Mon, 3 Apr 2023 19:08:27 +0200 Subject: [PATCH] Added clip view --- src/clip/ClipView.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/clip/ClipView.tsx diff --git a/src/clip/ClipView.tsx b/src/clip/ClipView.tsx new file mode 100644 index 0000000..fc557cb --- /dev/null +++ b/src/clip/ClipView.tsx @@ -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 { + + constructor(props: any) { + super(props); + } + + render(): JSX.Element { + return + Local Clipboard + + ; + } +} \ No newline at end of file