mirror of
https://github.com/flarum/core.git
synced 2025-08-11 10:55:47 +02:00
12 lines
291 B
TypeScript
12 lines
291 B
TypeScript
/**
|
|
* The `DiscussionRenamedPost` component displays a discussion event post
|
|
* indicating that the discussion has been renamed.
|
|
*
|
|
* ### Attrs
|
|
*
|
|
* - All of the attrs for EventPost
|
|
*/
|
|
export default class DiscussionRenamedPost extends EventPost {
|
|
}
|
|
import EventPost from "./EventPost";
|