mirror of
https://github.com/flarum/framework.git
synced 2024-12-03 15:43:59 +08:00
15 lines
267 B
JavaScript
15 lines
267 B
JavaScript
import Component from '../Component';
|
|
|
|
/**
|
|
* The `Separator` component defines a menu separator item.
|
|
*/
|
|
class Separator extends Component {
|
|
view() {
|
|
return <li className="Dropdown-separator" />;
|
|
}
|
|
}
|
|
|
|
Separator.isListItem = true;
|
|
|
|
export default Separator;
|