mirror of
https://github.com/flarum/framework.git
synced 2025-05-23 07:09:57 +08:00
8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
import Component from 'flarum/component';
|
|
|
|
export default class DashboardPage extends Component {
|
|
view() {
|
|
return m('div', 'dashboard');
|
|
}
|
|
};
|