mirror of
https://github.com/apache/superset.git
synced 2026-07-15 19:25:38 +00:00
20 lines
330 B
Plaintext
20 lines
330 B
Plaintext
---
|
|
title: API
|
|
hide_title: true
|
|
sidebar_position: 10
|
|
---
|
|
|
|
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> |