@@ -310,7 +328,13 @@ const InfoWrapper = styled('div')<{isResolvedOrIgnored: boolean}>`
flex-wrap: wrap;
`;
-const PriorityWorkflowWrapper = styled('div')`
+const SidebarWorkflowWrapper = styled('div')`
+ display: flex;
+ gap: ${space(0.5)};
+ align-items: center;
+`;
+
+const WorkflowWrapper = styled('div')`
display: flex;
column-gap: ${space(2)};
flex-wrap: wrap;
diff --git a/static/app/views/issueDetails/streamline/sidebar.tsx b/static/app/views/issueDetails/streamline/sidebar.tsx
new file mode 100644
index 00000000000000..3709b15fb783b7
--- /dev/null
+++ b/static/app/views/issueDetails/streamline/sidebar.tsx
@@ -0,0 +1,40 @@
+import styled from '@emotion/styled';
+
+import Feature from 'sentry/components/acl/feature';
+import ErrorBoundary from 'sentry/components/errorBoundary';
+import {StreamlinedExternalIssueList} from 'sentry/components/group/externalIssuesList/streamlinedExternalIssueList';
+import {GroupSummary} from 'sentry/components/group/groupSummary';
+import {space} from 'sentry/styles/space';
+import type {Event} from 'sentry/types/event';
+import type {Group} from 'sentry/types/group';
+import type {Project} from 'sentry/types/project';
+import StreamlinedActivitySection from 'sentry/views/issueDetails/streamline/activitySection';
+
+type Props = {
+ group: Group;
+ project: Project;
+ event?: Event;
+};
+
+export default function StreamlinedSidebar({group, event, project}: Props) {
+ return (
+
+
+
+
+ {event && (
+
+
+
+ )}
+
+
+
+ );
+}
+
+const StyledBreak = styled('hr')`
+ margin-top: ${space(2)};
+ margin-bottom: ${space(2)};
+ border-color: ${p => p.theme.border};
+`;