UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

12 lines (9 loc) 271 B
import { Component } from 'react'; import { GenerateIdProps } from '../GenerateId'; class GenerateId extends Component<GenerateIdProps, {}> { static displayName = 'GenerateId'; render() { return this.props.children('generated-id'); } } export { GenerateId };