Files
automatisch/packages/web/src/components/FlowStep/index.tsx
2021-12-24 17:41:31 +01:00

19 lines
348 B
TypeScript

import * as React from 'react';
import { Wrapper } from './style';
type FlowStepProps = {
collapsed?: boolean;
step?: any;
}
export default function FlowStep(props: FlowStepProps) {
const { step } = props;
return (
<Wrapper elevation={1}>
{step?.type} - {step?.appKey} - {step?.key} - {step?.connectionId}
</Wrapper>
)
};