blob: 98544e8c4d3e78931e370d1ae499718fb4dc091a [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}
enableFullScreenStepView={false}
enableMinizedStepView={false}
/>
);
};