mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-11 02:32:54 +00:00
12 lines
309 B
TypeScript
12 lines
309 B
TypeScript
![]() |
import Component from '@glimmer/component';
|
||
|
|
||
|
interface ILineageLineageMainArgs {
|
||
|
// Urn of the entity to render lineage graph
|
||
|
urn: string;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Lineage main will wrap all logic required to render lineage graph
|
||
|
*/
|
||
|
export default class LineageLineageMain extends Component<ILineageLineageMainArgs> {}
|