Migrate more components, fix spec documentation missing information

This commit is contained in:
HarelM
2023-12-21 20:44:39 +02:00
parent df65cc3eff
commit 901be16ae4
26 changed files with 188 additions and 186 deletions
+13
View File
@@ -0,0 +1,13 @@
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} />
}
}