mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
|
import React from 'react';
|
||
|
import { ListProps, AbstractList } from './AbstractList';
|
||
|
|
||
|
export class InlineList<T> extends React.PureComponent<ListProps<T>> {
|
||
|
render() {
|
||
|
return <AbstractList inline {...this.props} />;
|
||
|
}
|
||
|
}
|