form view toolbar

This commit is contained in:
Jan Prochazka
2021-01-09 16:55:47 +01:00
parent 03c7bbb7af
commit bb35a496f8
4 changed files with 23 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
import React from 'react';
import FormView from './FormView';
export default function SqlFormView({ rowData, tableInfo }) {
return <FormView rowData={rowData} tableInfo={tableInfo} />;
export default function SqlFormView(props) {
return <FormView {...props} />;
}