import React, { useEffect, useState } from 'react'; import styled from 'styled-components'; import { fetch } from '../util/logging'; const StyledContent = styled.div` display: flex; flex-direction: column; padding: 10px; height: 100%; `; const DebugLogTextArea = (props: { content: string }) => { console.warn('DebugLogTextArea ', props.content); // tslint:disable-next-line: react-a11y-input-elements return