import React from "react"; import { useHealthState } from "context"; import { intl } from "locale"; import styled from "styled-components"; const FixedFooterWrapper = styled.div` position: fixed; bottom: 0; width: 100%; `; interface Props { fixed?: boolean; } function Footer({ fixed }: Props) { const { health } = useHealthState(); const wrapped = () => { return ( ); }; return fixed ? ( {wrapped()} ) : ( wrapped() ); } export { Footer };