mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 17:57:04 +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;
|