formview - basic display

This commit is contained in:
Jan Prochazka
2021-01-09 16:35:36 +01:00
parent bdb8f44895
commit 03c7bbb7af
7 changed files with 172 additions and 11 deletions

View File

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