summaryrefslogtreecommitdiff
path: root/extension/react-app/src/tabs/additionalContext.tsx
blob: 98fce9f19e1e9fa9cbbb746f600d0c2908409fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from "react";
import { H3, TextArea } from "../components";

function AdditionalContextTab() {
  return (
    <div className="mx-5">
      <H3>Additional Context</H3>
      <TextArea
        rows={8}
        placeholder="Copy and paste information related to the bug from GitHub Issues, Slack threads, or other notes here."
        className="additionalContextTextarea"
      ></TextArea>
      <br></br>
    </div>
  );
}

export default AdditionalContextTab;