import React from "react";
import { Dropdown, Icon, Grid, Divider } from "semantic-ui-react";
import { Segment, Image } from "semantic-ui-react";
import {
BrowserView,
MobileView,
isBrowser,
isMobile
} from "react-device-detect";
const AvatarImage = () => (
);
const IconHomeImage = () => (
);
const IconHomeImageMobile = () => (
);
const TitleImage = () => (
);
const BrowserStructure = (props) => (
Settings
Document
Image
See profile...
Logout
);
const MobileStructure = (props) => (
Settings
Document
Image
See profile...
Logout
);
export default class MyHeader extends React.Component {
render() {
return (
);
}
}