zepio/app/components/empty-transactions.js

20 lines
376 B
JavaScript
Raw Normal View History

// @flow
import React from 'react';
import styled from 'styled-components';
import { TextComponent } from './text';
const Wrapper = styled.div`
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 30px 0;
`;
export const EmptyTransactionsComponent = () => (
<Wrapper>
<TextComponent value='No transactions!' />
</Wrapper>
);