-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
LanDinh
committed
Nov 15, 2023
1 parent
0a1afb4
commit 0ba348f
Showing
4 changed files
with
25 additions
and
17 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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
import { links, ErrorBoundary, App, handle } from './khaleesi/components/document' | ||
import { navigationProperties } from './khaleesi/navigation/navigationData' | ||
import { topNavigationData } from './khaleesi/navigation/commonNavigationData' | ||
|
||
|
||
export default App | ||
export { links, ErrorBoundary, navigationProperties, handle } | ||
const AdminApp = () => <App title="Admin Console" /> | ||
export default AdminApp | ||
export { links, ErrorBoundary, handle } | ||
export const navigationProperties = topNavigationData[0] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
import { links, ErrorBoundary, App, handle } from './khaleesi/components/document' | ||
import { navigationProperties } from './khaleesi/navigation/navigationData' | ||
import { topNavigationData } from './khaleesi/navigation/commonNavigationData' | ||
|
||
|
||
export default App | ||
export { links, ErrorBoundary, navigationProperties, handle } | ||
const TestApp = () => <App title="Test App" /> | ||
export default TestApp | ||
export { links, ErrorBoundary, handle } | ||
export const navigationProperties = topNavigationData[0] |
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
import { links, ErrorBoundary, App, handle } from './khaleesi/components/document' | ||
import { navigationProperties } from './khaleesi/navigation/navigationData' | ||
import { topNavigationData } from './khaleesi/navigation/commonNavigationData' | ||
|
||
|
||
export default App | ||
export { links, ErrorBoundary, navigationProperties, handle } | ||
const NewApp = () => <App title="Lorem Ipsum" /> | ||
export default NewApp | ||
export { links, ErrorBoundary, handle } | ||
export const navigationProperties = topNavigationData[0] |