aboutsummaryrefslogtreecommitdiffstats
path: root/app/containers/App/EmptyItem.js
blob: bb27e8503032e07683b9fc27da76ff8882fbe746 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import React from 'react';
import styled from 'styled-components';
import ReactTypingEffect from 'react-typing-effect';

const Item = styled.div`
  flex: 1 0 auto;
  display: flex;
  align-items: flex-end;
  white-space: pre;
`;

const EmptyItem = () => (
  <Item>
    <ReactTypingEffect
      speed="100"
      text="Place your bet! We will have a lucky winner soon..."
    />
  </Item>
);

export default EmptyItem;