mirror of
https://github.com/maputnik/editor.git
synced 2026-08-30 00:47:25 +00:00
974dd7bfd9
This is to continue the work of migrating all the jsx files into tsx files. The MO is basically described here: #848. About 7 files to go...
19 lines
419 B
TypeScript
19 lines
419 B
TypeScript
import React from 'react'
|
|
import InputMultiInput, {InputMultiInputProps} from './InputMultiInput'
|
|
import Fieldset from './Fieldset'
|
|
|
|
|
|
type FieldMultiInputProps = InputMultiInputProps & {
|
|
label?: string
|
|
};
|
|
|
|
|
|
export default class FieldMultiInput extends React.Component<FieldMultiInputProps> {
|
|
render() {
|
|
return <Fieldset label={this.props.label}>
|
|
<InputMultiInput {...this.props} />
|
|
</Fieldset>
|
|
}
|
|
}
|
|
|