blob: 646bbccce0286465a4bac32db7f3774a28c570a5 [file]
import { AppView } from '../components/routes/app/AppView';
export const MiniTelemetry = (props: { projectId: string; appId: string | undefined }) => {
//TODO -- put this upstream
const { projectId, appId } = props;
if (appId === undefined) {
return <div></div>;
}
return (
<AppView
projectId={projectId}
appId={appId}
orientation="stacked_vertical"
defaultAutoRefresh={true}
/>
);
};