This commit is contained in:
2019-07-05 23:43:35 +02:00
parent ddfa81a458
commit 4db704759e
65 changed files with 13 additions and 3581 deletions

View File

@@ -0,0 +1,29 @@
import React from 'react';
import styled from 'styled-components/native';
import {
Body,
Emphasis,
} from './text';
const Wrapper = styled.View`
flex-direction: row;
padding: 10px;
`;
const Left = styled.View`
width: 100px;
`;
const Row = ({
left,
right,
}) => (
<Wrapper>
<Left>
<Emphasis>{left}:</Emphasis>
</Left>
<Body selectable={true}>{right}</Body>
</Wrapper>
)
export default Row;