@grafana/ui
Version:
Grafana Components Library
13 lines (10 loc) • 335 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import { PureComponent } from 'react';
import { AbstractList } from './AbstractList.mjs';
class InlineList extends PureComponent {
render() {
return /* @__PURE__ */ jsx(AbstractList, { inline: true, ...this.props });
}
}
export { InlineList };
//# sourceMappingURL=InlineList.mjs.map