UNPKG

@patternfly/react-core

Version:

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

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