mirror of
https://github.com/flarum/core.git
synced 2025-10-19 18:56:44 +02:00
10 lines
176 B
JavaScript
10 lines
176 B
JavaScript
import Component from 'flarum/Component';
|
|
|
|
export default class AppearancePage extends Component {
|
|
view() {
|
|
return (
|
|
<div className="AppearancePage"/>
|
|
);
|
|
}
|
|
}
|