From d6a18bb44d678051a214cc9f0e9bc75ab74f2088 Mon Sep 17 00:00:00 2001 From: BloodyMarie Date: Sat, 26 Mar 2022 11:30:48 +0100 Subject: [PATCH] Remove unused file --- components/common/button-to-button.js | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 components/common/button-to-button.js diff --git a/components/common/button-to-button.js b/components/common/button-to-button.js deleted file mode 100644 index e67dfcb..0000000 --- a/components/common/button-to-button.js +++ /dev/null @@ -1,20 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' -import { StyleSheet, View } from 'react-native' - -const ButtonRow = ({ children }) => { - return {children} -} - -ButtonRow.propTypes = { - children: PropTypes.node.isRequired, -} - -const styles = StyleSheet.create({ - container: { - flexDirection: 'row', - justifyContent: 'space-between', - }, -}) - -export default ButtonRow