All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.form.task.standard.StepCardFields.js Maven / Gradle / Ivy

import { Stack, Box }    from '@mui/material';
import InputField        from 'components/form/fields/InputField';
import { partitionType } from 'utils/type-utils';

const StepCardFields = ({partition,}) => {
  function toField(field, index) {
    return (
      
        
      
    )
  }

  return (
    
      {partition.fields.map(toField)}
		
	)
}

StepCardFields.propTypes = {
	partition : partitionType,
}

export default StepCardFields




© 2015 - 2024 Weber Informatics LLC | Privacy Policy