set filter modal

This commit is contained in:
Jan Prochazka
2020-05-16 07:55:02 +02:00
parent 3b7f391b8c
commit 96e160f122
4 changed files with 178 additions and 12 deletions

View File

@@ -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>;
}