2022-06-21 15:36:01 +03:00

13 lines
224 B
JavaScript

import renderFormRows from 'Components/Calculation/lib/render-rows';
import { id, rows, title } from './config';
function Output() {
return renderFormRows(rows);
}
export default {
id,
title,
Component: Output,
};