mirror of
https://github.com/maputnik/editor.git
synced 2026-01-27 07: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>
13 lines
260 B
TypeScript
13 lines
260 B
TypeScript
import React from 'react'
|
|
import InputJson, {InputJsonProps} from './InputJson'
|
|
|
|
|
|
type FieldJsonProps = InputJsonProps & {};
|
|
|
|
|
|
export default class FieldJson extends React.Component<FieldJsonProps> {
|
|
render() {
|
|
return <InputJson {...this.props} />
|
|
}
|
|
}
|