import React, { FC } from 'react' import { useHistory } from 'react-router-dom' import { useTheme } from '../hooks' const Logo: FC = () => { const theme = useTheme() const history = useHistory() return (
history.push('/')}> F
) } export default Logo