mirror of
https://github.com/flarum/core.git
synced 2025-10-12 15:34:26 +02:00
12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
/**
|
|
* The `DiscussionRenamedNotification` component displays a notification which
|
|
* indicates that a discussion has had its title changed.
|
|
*
|
|
* ### Attrs
|
|
*
|
|
* - All of the attrs for Notification
|
|
*/
|
|
export default class DiscussionRenamedNotification extends Notification {
|
|
}
|
|
import Notification from "./Notification";
|