mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-31 02:00:07 +02:00
11 lines
270 B
TypeScript
11 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
|