Skip to content

Commit

Permalink
add nodescard
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgrigorosita committed May 3, 2024
1 parent f56135e commit b712c5a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import NodesCard from '../components/nodes/NodesCard'
import { useListAllNodes } from '../src/api/generated'

function NodeList() {
Expand All @@ -7,6 +8,11 @@ function NodeList() {
})

const nodes = getAllNodesQuery.data?.nodes || []
return (
<>
<NodesCard />
</>
)
}

export default NodeList

0 comments on commit b712c5a

Please sign in to comment.