latex-ub/services/web/frontend/js/features/file-tree/components/file-tree-create/danger-message.jsx
2025-05-05 12:24:05 +00:00

9 lines
293 B
JavaScript

import OLNotification from '@/features/ui/components/ol/ol-notification'
import PropTypes from 'prop-types'
export default function DangerMessage({ children }) {
return <OLNotification type="error" content={children} />
}
DangerMessage.propTypes = {
children: PropTypes.any.isRequired,
}