mirror of
https://github.com/flarum/core.git
synced 2025-08-08 09:26:34 +02:00
13 lines
315 B
TypeScript
13 lines
315 B
TypeScript
/**
|
|
* The `Placeholder` component displays a muted text with some call to action,
|
|
* usually used as an empty state.
|
|
*
|
|
* ### Attrs
|
|
*
|
|
* - `text`
|
|
*/
|
|
export default class Placeholder extends Component<import("../Component").ComponentAttrs, undefined> {
|
|
constructor();
|
|
}
|
|
import Component from "../Component";
|