Fix filters, restyle filters page

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2023-02-07 15:38:31 +01:00
parent d44be7fbf8
commit 49a7d40efb
13 changed files with 99 additions and 194 deletions

View File

@ -160,14 +160,6 @@ export const SimpleForm: React.FC<ISimpleForm> = (props) => {
);
};
interface IFieldsGroup {
children: React.ReactNode,
}
export const FieldsGroup: React.FC<IFieldsGroup> = ({ children }) => (
<div className='fields-group'>{children}</div>
);
interface ICheckbox {
label?: React.ReactNode,
hint?: React.ReactNode,