feat: introduce dummy flow editor
This commit is contained in:
18
packages/web/src/components/FlowStep/index.tsx
Normal file
18
packages/web/src/components/FlowStep/index.tsx
Normal 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>
|
||||
)
|
||||
};
|
Reference in New Issue
Block a user