From 774113edda1b9219001ef4adab3f4e19c46bcecc Mon Sep 17 00:00:00 2001 From: piotrruss Date: Sat, 21 May 2022 18:42:30 +0100 Subject: refactor --- components/RemoveNoteButton.jsx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 components/RemoveNoteButton.jsx (limited to 'components/RemoveNoteButton.jsx') diff --git a/components/RemoveNoteButton.jsx b/components/RemoveNoteButton.jsx new file mode 100644 index 0000000..d88d6b0 --- /dev/null +++ b/components/RemoveNoteButton.jsx @@ -0,0 +1,31 @@ +import { StyleSheet, Text, View, Pressable } from 'react-native' + +const RemoveNoteButton = ({ removeNote }) => ( + + + + Delete + + + +); + +const styles = StyleSheet.create({ + button: { + width: 80, + alignItems: 'center', + justifyContent: 'center', + backgroundColor: 'red', + }, + buttonText: { + fontWeight: 'bold', + color: 'white', + }, + buttonsContainer: { + flex: 1, + flexDirection: 'row', + justifyContent: 'flex-end', + }, +}); + +export default RemoveNoteButton; -- cgit v1.2.3