mirror of
https://github.com/maputnik/editor.git
synced 2026-09-02 02:17:26 +00:00
2cc179acc1
- Added searchParams based router for easier testing - Added more stories to the storybook
17 lines
294 B
React
17 lines
294 B
React
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import InputJson from './InputJson'
|
|
|
|
|
|
export default class FieldJson extends React.Component {
|
|
static propTypes = {
|
|
...InputJson.propTypes,
|
|
}
|
|
|
|
render() {
|
|
const {props} = this;
|
|
return <InputJson {...props} />
|
|
}
|
|
}
|
|
|