mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 04:33:47 +08:00
15 lines
191 B
JavaScript
15 lines
191 B
JavaScript
|
import Component from 'flarum/component';
|
||
|
|
||
|
/**
|
||
|
|
||
|
*/
|
||
|
class Separator extends Component {
|
||
|
view() {
|
||
|
return m('span');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Separator.wrapperClass = 'divider';
|
||
|
|
||
|
export default Separator;
|