Added a glossary json file to store display the key value tooltips

This commit is contained in:
Ashvin-Sr
2025-11-23 22:53:08 -05:00
committed by CharelSuarez
parent 0a506ba76a
commit 6caa5a89a4
3 changed files with 44 additions and 6 deletions

View File

@@ -4,13 +4,17 @@ hide_title: true
sidebar_position: 10
---
import SwaggerUI from 'swagger-ui-react';
import openapi from '/resources/openapi.json';
import 'swagger-ui-react/swagger-ui.css';
import { Alert } from 'antd';
import glossary from '/resources/glossary.json';
import KeyValue from '../../src/components/KeyValue.tsx';
## Glossary
<br />
<br />
<hr />
<div>
{Object.entries(glossary).map(([key, value]) => (
<KeyValue key={key} keyName={key} value={value} />
))}
</div>