UNPKG

@motor-js/cli

Version:

CLI tool for generating Qlik Sense Mashups

33 lines (30 loc) 773 B
import React from "react"; import { StyledFooter, StyledFooterLeft, StyledFooterRight, StyledFooterNav, StyledFotterNavLink, } from "./style"; const Footer = () => { return ( <StyledFooter> <StyledFooterRight> <StyledFooterNav> <StyledFotterNavLink path="https://docs.motor.so"> View Docs </StyledFotterNavLink> <StyledFotterNavLink path="https://www.motor.so/contact"> Get Help </StyledFotterNavLink> </StyledFooterNav> </StyledFooterRight> <StyledFooterLeft> <span>&copy; MOTOR {new Date().getFullYear()} </span> <span className="copright-link"> </span> </StyledFooterLeft> </StyledFooter> ); }; export default Footer;