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) 274 B
import * as React from 'react'; import { GenerateIdProps } from '../GenerateId'; class GenerateId extends React.Component<GenerateIdProps, {}> { static displayName = 'GenerateId'; render() { return this.props.children('generated-id'); } } export { GenerateId };