grafana/packages/grafana-ui/src/components/List/InlineList.tsx

10 lines
229 B
TypeScript
Raw Normal View History

import React from 'react';
import { ListProps, AbstractList } from './AbstractList';
export class InlineList<T> extends React.PureComponent<ListProps<T>> {
render() {
return <AbstractList inline {...this.props} />;
}
}