12 lines
270 B
TypeScript
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
|