mirror of
https://github.com/maputnik/editor.git
synced 2026-02-10 14:40:01 +00:00
Keeps the repo clean, same as several other of our repos --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
18 lines
418 B
TypeScript
18 lines
418 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>
|
|
}
|
|
}
|