mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 18:46:00 +00:00
set filter modal
This commit is contained in:
@@ -1,13 +1,9 @@
|
||||
import React from 'react';
|
||||
|
||||
export function TextField({ ...other }) {
|
||||
return <input type="text" {...other}></input>;
|
||||
export function TextField({ editorRef = undefined, ...other }) {
|
||||
return <input type="text" {...other} ref={editorRef}></input>;
|
||||
}
|
||||
|
||||
export function SelectField({ children, ...other }) {
|
||||
return (
|
||||
<select {...other}>
|
||||
{children}
|
||||
</select>
|
||||
);
|
||||
return <select {...other}>{children}</select>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user