mirror of
https://github.com/flarum/core.git
synced 2025-07-25 18:51:40 +02:00
10 lines
377 B
TypeScript
10 lines
377 B
TypeScript
/**
|
|
* The `NotificationsPage` component shows the notifications list. It is only
|
|
* used on mobile devices where the notifications dropdown is within the drawer.
|
|
*/
|
|
export default class NotificationsPage extends Page<import("../../common/components/Page").IPageAttrs> {
|
|
constructor();
|
|
bodyClass: string | undefined;
|
|
}
|
|
import Page from "../../common/components/Page";
|