mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-08-01 05:00:09 +02:00

Remove PropTypes from file-tree components GitOrigin-RevId: 7ecbf9778da59b852be8678c5dff61e13d927b9c
9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
import OLNotification from '@/features/ui/components/ol/ol-notification'
|
|
|
|
export default function DangerMessage({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return <OLNotification type="error" content={children} />
|
|
}
|