import React from 'react'; import styled from 'styled-components/native'; import Row from '../../base/Row'; import { Body, } from '../../base/text'; const Scroll = styled.ScrollView` flex: 1; `; const Wrapper = styled.View` `; const Button = styled.TouchableOpacity` `; const Keys = ({ keys, selected, onSelect, }) => ( {keys.map(key => ( ))} ) export default Keys;