2023-03-29 10:07:34 +03:00

13 lines
213 B
JavaScript

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