react-form-controlled
Version:
Intuitive react forms for building powerful applications
19 lines (17 loc) • 335 B
JavaScript
import React from 'react';
import ProvideProps from './ProvideProps';
export default class Path extends ProvideProps {
getProps() {
return {
path: this.getPath()
};
}
renderEmptyChildren({ path }) {
return React.createElement(
'span',
null,
path
);
}
}
//# sourceMappingURL=Path.js.map