import React from 'react'; import '../../css/Components/footer.css' class Footer extends React.Component { constructor(props) { super(props); this.state = { onMeans:false } } handleDisplayMeans = () => { this.setState({onMeans:true}) } handleNormal = () => { this.setState({onMeans:false}) } render() { const date = new Date(); return (
{this.state.onMeans ?
{/* eslint-disable-next-line */} bonjour {/* eslint-disable-next-line */} bonjour
:
Contacter le développeur
}
Le Proxigang
) } } export default Footer;