mirror of
https://github.com/apache/superset.git
synced 2026-07-19 21:25:38 +00:00
Added a glossary json file to store display the key value tooltips
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user