mirror of
https://github.com/flarum/framework.git
synced 2024-12-03 07:33:36 +08:00
13 lines
304 B
TypeScript
13 lines
304 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> {
|
||
|
constructor();
|
||
|
}
|
||
|
import Component from "../Component";
|