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 (
) } } export default Footer;