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