feat: introduce dummy flow editor

This commit is contained in:
Ali BARIN
2021-12-24 17:22:06 +01:00
parent e3184aedb8
commit 11bdbf1727
14 changed files with 172 additions and 14 deletions

View File

@@ -0,0 +1,18 @@
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>
)
};