mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-03 07:55:36 +00:00
* 01 fix eslint warnings * fix code warnings * fix code warnings * fix code warnings * fix code warnings * fix code warnings
11 lines
323 B
JavaScript
11 lines
323 B
JavaScript
import React from 'react';
|
|
import { siteRoot, gettext } from '../../utils/constants';
|
|
|
|
export default function Logout() {
|
|
return (
|
|
<a className="logout-icon" href={`${siteRoot}accounts/logout/`} title={gettext('Log out')}>
|
|
<i className="sf3-font sf3-font-logout" style={{fontSize: '24px'}}></i>
|
|
</a>
|
|
);
|
|
}
|