mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* show signing status * show signing status * Progress on signed badge style * Progress on signing status look and updated card background * Updates * Transforms card tweak Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
24 lines
551 B
TypeScript
24 lines
551 B
TypeScript
import React, { FC } from 'react';
|
|
import PluginListItem from './PluginListItem';
|
|
import { PluginMeta } from '@grafana/data';
|
|
|
|
interface Props {
|
|
plugins: PluginMeta[];
|
|
}
|
|
|
|
const PluginList: FC<Props> = props => {
|
|
const { plugins } = props;
|
|
|
|
return (
|
|
<section className="card-section card-list-layout-list">
|
|
<ol className="card-list">
|
|
{plugins.map((plugin, index) => {
|
|
return <PluginListItem plugin={plugin} key={`${plugin.name}-${index}`} />;
|
|
})}
|
|
</ol>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default PluginList;
|