import * as React from "react" import {Box, Code} from "@steffo/bluelib-react"; export interface DebugBoxProps { [key: string]: any, } export function DebugBox(props: DebugBoxProps): JSX.Element { return (
                    {JSON.stringify(props, undefined, 4)}
                
) }