UNPKG

@patternfly/react-core

Version:

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

9 lines (6 loc) 181 B
import * as React from 'react'; interface AlertContext { title: React.ReactNode; variantLabel?: string; } export const AlertContext = React.createContext<AlertContext>(null);