feat: introduce feature flag for new flow editor

This commit is contained in:
kasia.oczkowska
2024-04-18 14:38:10 +01:00
committed by Ali BARIN
parent b5839390fd
commit bac4ab5aa4
2 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
import * as React from 'react';
import { FlowPropType } from 'propTypes/propTypes';
function EditorNew(props) {
return <div>new editor comes here</div>;
}
EditorNew.propTypes = {
flow: FlowPropType.isRequired,
};
export default EditorNew;