From e73defcb48ef857c0f150f8a96c2420ff952cb8c Mon Sep 17 00:00:00 2001 From: Amit Amrutiya Date: Tue, 8 Oct 2024 17:31:23 +0530 Subject: [PATCH] chore: export component Signed-off-by: Amit Amrutiya --- src/custom/NavigationNavbar/index.tsx | 3 +++ src/custom/index.tsx | 1 + 2 files changed, 4 insertions(+) create mode 100644 src/custom/NavigationNavbar/index.tsx diff --git a/src/custom/NavigationNavbar/index.tsx b/src/custom/NavigationNavbar/index.tsx new file mode 100644 index 000000000..f9b89250a --- /dev/null +++ b/src/custom/NavigationNavbar/index.tsx @@ -0,0 +1,3 @@ +import NavigationNavbar from './navigationNavbar'; + +export { NavigationNavbar }; diff --git a/src/custom/index.tsx b/src/custom/index.tsx index 45c772aab..8ec34c8a4 100644 --- a/src/custom/index.tsx +++ b/src/custom/index.tsx @@ -45,6 +45,7 @@ import UniversalFilter, { UniversalFilterProps } from './UniversalFilter'; export { CatalogCard } from './CatalogCard'; export { StyledChartDialog } from './ChartDialog'; export { LearningContent } from './LearningContent'; +export { NavigationNavbar } from './NavigationNavbar'; export { Note } from './Note'; export { SetupPreReq } from './SetupPrerequisite'; export { StyledChapter } from './StyledChapter';