UNPKG

react-form-controlled

Version:

Intuitive react forms for building powerful applications

17 lines (14 loc) 274 B
import React from 'react'; import ProvideProps from './ProvideProps'; export default class Path extends ProvideProps { getProps() { return { path: this.getPath(), }; } renderEmptyChildren({ path }) { return ( <span>{path}</span> ); } }