mirror of
https://github.com/flarum/core.git
synced 2025-10-13 07:54:25 +02:00
Currently not user-customizable. Just needed to display statistics for a client, so figured I'd make a start at this. Nothing too fancy for now, but I'm sure some people will be happy to have this information at their fingertips.
17 lines
415 B
JavaScript
17 lines
415 B
JavaScript
import Page from 'flarum/components/Page';
|
|
import StatusWidget from 'flarum/components/StatusWidget';
|
|
import StatisticsWidget from 'flarum/components/StatisticsWidget';
|
|
|
|
export default class DashboardPage extends Page {
|
|
view() {
|
|
return (
|
|
<div className="DashboardPage">
|
|
<div className="container">
|
|
<StatusWidget/>
|
|
<StatisticsWidget/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|