import Link from "next/link"; import React from "react"; import Image from "next/image"; import TezosLinkLogo from "@Assets/link_logo.svg"; import Logo from "@Assets/logo_standard_neutral.svg"; import classes from "./classes.module.scss"; import Burger from "@Front/Components/Elements/Burger"; import Module from "@Front/Config/Module"; type IProps = {}; type IState = { status: boolean; }; export default class Header extends React.Component { public constructor(props: IProps) { super(props); this.state = { status: false, }; this.switchStatus = this.switchStatus.bind(this); } public override render(): JSX.Element { return ( <>
TEZOS LINK
entire stack
{/*
); } private switchStatus() { this.state.status ? this.setState({ status: false }) : this.setState({ status: true }); } }