diff --git a/app/components/loader.js b/app/components/loader.js new file mode 100644 index 0000000..7ab6468 --- /dev/null +++ b/app/components/loader.js @@ -0,0 +1,20 @@ +// @flow +import React from 'react'; +import styled from 'styled-components'; + +import { TextComponent } from './text'; + +const Wrapper = styled.div` + width: 100%; + height: 100%; + display: flex; + align-items: center; + justify-content: center; + text-align: center; +`; + +export const LoaderComponent = () => ( + + + +);