import React from 'react'; import styled from 'styled-components'; import LandingWrapper from 'views/Landing/components/LandingWrapper'; import { Link, H5, H6 } from 'trezor-ui-components'; const Wrapper = styled.div` display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; `; const Line = styled.div` padding: 20px; `; const Version = () => (
APPLICATION VERSION
{VERSION}
LAST COMMIT HASH
{COMMITHASH}
); export default Version;