import React from "react"; import "./NavbarChildLink.scss"; import Anchor from "../Anchor"; export interface NavbarChildLinkProps { to: string; } export interface NavbarChildLinkState { open: boolean; } class NavbarChildLink extends React.Component { render() { return ( {this.props.children} ); } } export default NavbarChildLink;