2025-04-24 13:11:28 +08:00

12 lines
270 B
TypeScript

import Notification from '@/shared/components/notification'
function OLNotification(props: React.ComponentProps<typeof Notification>) {
return (
<div className="notification-list">
<Notification {...props} />
</div>
)
}
export default OLNotification