import React from 'react'; import Css from './debug-info.module.css'; export type Props = { value?: string; children?: any; }; export const DebugInfo = (props: Props): JSX.Element => { let output: any; if (props.value) { output =
{props.value};
} else if (props.children) {
output = props.children;
} else {
output = (none); } return