import PropTypes from 'prop-types'; interface Props { context: 'info' | 'success' | 'warning' | 'danger'; children: any; } export const Alert = ({ context, children }: Props) => { return