feat: live app configuration's mockups (#261)

* feat: implement new mockups for live card
This commit is contained in:
Awais Ansari
2022-03-16 11:48:58 +05:00
committed by GitHub
parent abc7e018fc
commit 9c6f8546cf
9 changed files with 322 additions and 14 deletions

View File

@@ -39,13 +39,19 @@ function FormikControl({
FormikControl.propTypes = {
name: PropTypes.element.isRequired,
label: PropTypes.element.isRequired,
help: PropTypes.element.isRequired,
className: PropTypes.string.isRequired,
label: PropTypes.element,
help: PropTypes.element,
className: PropTypes.string,
value: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number,
]).isRequired,
};
FormikControl.defaultProps = {
help: <></>,
label: <></>,
className: '',
};
export default FormikControl;