plopfile-generate
Version:
Installation:
18 lines (14 loc) • 544 B
JavaScript
import React from 'react';
// import PropTypes from 'prop-types';
import RestFormInput from '../../../components/RestInput/RestFormInput';
import RestRow from '../../../components/RestLayout/RowLayout';
// import ColLayout from '../../../components/RestLayout/ColLayout';
const {{upperCaseFirstChartWithPluralize name}}Form = props => {
return (
<RestRow {...props}>
//content here
</RestRow>
);
};
{{upperCaseFirstChartWithPluralize name}}Form.propTypes = {};
export default {{upperCaseFirstChartWithPluralize name}}Form;