import React from 'react'; import { sessions, withSiteId } from 'App/routes'; import { NavLink } from 'react-router-dom'; import { Button } from 'antd'; import { Icon } from 'UI'; const SESSIONS_PATH = sessions(); interface Props { siteId: any; } function Logo(props: Props) { return ( ); } export default Logo;