minor changes

Signed-off-by: hram_wh <hakkam@Hakkams-MacBook-Pro.local>
This commit is contained in:
hram_wh
2022-11-03 16:01:07 +05:30
parent a392bd38ab
commit 551d572447
3 changed files with 13 additions and 3 deletions
+11 -1
View File
@@ -94,7 +94,17 @@ export const apis: AnyApiFactory[] = [
api: exploreToolsConfigRef,
deps: {},
factory: () => ({
/* pass the tools array */
/* pass the tools array
i.e. tools = [
{
title: 'New Relic',
description:'new relic plugin,
url: '/newrelic',
image: 'https://i.imgur.com/L37ikrX.jpg',
tags: ['newrelic', 'proxy', 'nerdGraph'],
},
]
*/
}),
}),
@@ -59,7 +59,7 @@ const Body = () => {
return (
<ItemCardGrid>
{tools?.map((tool, index) => (
{tools.map((tool, index) => (
<ToolCard key={index} card={tool} />
))}
</ItemCardGrid>