import React, { FunctionComponent } from "react"; import style from "./style.module.css"; declare var __BUILD__: any; export interface FooterProps { class?: string } const Footer: FunctionComponent = ({ ...props}) => { return (

Propulsé par Guesstimate et publié sous licence AGPL-3.0.

Version: {__BUILD__.version} - Réf.: {__BUILD__.gitRef ? __BUILD__.gitRef : '??'} - Date de construction: {__BUILD__.buildDate ? __BUILD__.buildDate : '??'}

); }; export default Footer;