import React from 'react'; import { sessions, withSiteId } from 'App/routes'; import AnimatedSVG from 'Shared/AnimatedSVG'; import { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG'; import { NavLink } from 'react-router-dom'; const SESSIONS_PATH = sessions(); interface Props { siteId: any; } function Logo(props: Props) { return (
v{window.env.VERSION}
); } export default Logo;