add base UI with library and renters pages fleshed out

This commit is contained in:
David Lick
2020-05-28 00:18:43 -04:00
parent 6fc929e38b
commit b644567f71
32 changed files with 1007 additions and 151 deletions
@@ -0,0 +1,28 @@
import React from 'react';
import styled from 'styled-components';
import Button from './Button/Button';
const ButtonBayContainer = styled.div`
display: flex;
justify-content: space-between;
align-items: center;
margin-left: 7.5px;
width: 320px;
height: 100%;
`
const ButtonBay: React.FC = () => (
<ButtonBayContainer>
<Button
text="Register new renter"
destination="/renters"
/>
<Button
text="Checkout"
destination="/checkout"
/>
</ButtonBayContainer>
)
export default ButtonBay;