fix: model logs loading
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Slider } from 'antd';
|
||||
import { Checkbox, Slider } from 'antd';
|
||||
import SealInput from '../seal-input';
|
||||
import SealSelect from '../seal-select';
|
||||
|
||||
@@ -8,12 +8,14 @@ const components: {
|
||||
Slider: React.ComponentType<typeof Slider>;
|
||||
TextArea: typeof SealInput.TextArea;
|
||||
Input: typeof SealInput.Input;
|
||||
Checkbox: typeof Checkbox;
|
||||
} = {
|
||||
InputNumber: SealInput.Number,
|
||||
Select: SealSelect,
|
||||
Slider: Slider as React.ComponentType<typeof Slider>,
|
||||
TextArea: SealInput.TextArea,
|
||||
Input: SealInput.Input
|
||||
Input: SealInput.Input,
|
||||
Checkbox: Checkbox
|
||||
};
|
||||
|
||||
export default components;
|
||||
|
||||
Reference in New Issue
Block a user