-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create minimal partial data layer scaffold
- Loading branch information
1 parent
8804ee3
commit e005df2
Showing
6 changed files
with
201 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from 'react'; | ||
import { veda_datasets } from "$data-layer/datasets"; | ||
import DataCatalog from '$components/data-catalog'; | ||
|
||
// @VEDA2-REFACTOR-WORK | ||
|
||
// @NOTE: This container component serves as a wrapper for the purpose of data management, this is ONLY to support current instances. | ||
// veda2 instances can just use the direct component, 'DataCatalog', and manage data directly in their page views | ||
|
||
export default function DataCatalogContainer() { | ||
return ( | ||
<> | ||
<DataCatalog datasets={veda_datasets} /> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.