mirror of
https://github.com/flarum/framework.git
synced 2024-12-01 14:20:47 +08:00
b8754c7d7d
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
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";
|