22
app/layout/components/NavbarUser.js
Executable file
22
app/layout/components/NavbarUser.js
Executable file
@@ -0,0 +1,22 @@
|
||||
import React from 'react';
|
||||
import { Link } from 'react-router-dom';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
import {
|
||||
NavItem,
|
||||
NavLink
|
||||
} from './../../components';
|
||||
|
||||
const NavbarUser = (props) => (
|
||||
<NavItem { ...props }>
|
||||
<NavLink tag={ Link } to="/pages/login">
|
||||
<i className="fa fa-power-off"></i>
|
||||
</NavLink>
|
||||
</NavItem>
|
||||
);
|
||||
NavbarUser.propTypes = {
|
||||
className: PropTypes.string,
|
||||
style: PropTypes.object
|
||||
};
|
||||
|
||||
export { NavbarUser };
|
Reference in New Issue
Block a user