import { FunctionalComponent, h } from "preact"; import style from "./style.module.css"; declare var __BUILD__: any; export interface FooterProps { class?: string } const Footer: FunctionalComponent = ({ ...props}) => { console.log(__BUILD__) 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;