import React from 'react';
import { Icon, Input } from 'UI';
import ActiveIssueClose from './ActiveIssueClose';
import stl from './issueHeader.module.css';
const GotoSessionLink = props => (
{'Go to session'}
)
const IssueHeader = ({issue, typeIcon, assignee}) => {
return (
{/*
*/}
{/*
*/}
{ typeIcon }
{/*

*/}
{ issue.id }
{/*
{ '@ 00:13 Secs'}
*/}
{ assignee &&
{'Assigned to'}
{ assignee.name }
}
{issue.title}
);
};
export default IssueHeader;