mirror of
https://github.com/maputnik/editor.git
synced 2026-09-01 09:57:27 +00:00
2cc179acc1
- Added searchParams based router for easier testing - Added more stories to the storybook
22 lines
440 B
React
22 lines
440 B
React
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import Block from './Block'
|
|
import InputMultiInput from './InputMultiInput'
|
|
import Fieldset from './Fieldset'
|
|
|
|
|
|
export default class FieldMultiInput extends React.Component {
|
|
static propTypes = {
|
|
...InputMultiInput.propTypes,
|
|
}
|
|
|
|
render() {
|
|
const {props} = this;
|
|
|
|
return <Fieldset label={props.label}>
|
|
<InputMultiInput {...props} />
|
|
</Fieldset>
|
|
}
|
|
}
|
|
|