-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup new nav bar and vertical nav in project details
- Loading branch information
1 parent
bbb5eaf
commit ace063a
Showing
32 changed files
with
1,112 additions
and
298 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
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
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
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,27 @@ | ||
import * as React from 'react'; | ||
import EmptyDetailsView from '~/components/EmptyDetailsView'; | ||
import ApplicationsPage from '~/pages/ApplicationsPage'; | ||
import TitleWithIcon from '~/concepts/design/TitleWithIcon'; | ||
import { ProjectObjectType } from '~/concepts/design/utils'; | ||
|
||
type ComingSoonPageProps = { | ||
title: string; | ||
objectType?: ProjectObjectType; | ||
}; | ||
|
||
const ComingSoonPage: React.FC<ComingSoonPageProps> = ({ title, objectType }) => ( | ||
<ApplicationsPage | ||
loaded | ||
empty | ||
title={objectType ? <TitleWithIcon title={title} objectType={objectType} /> : title} | ||
emptyStatePage={ | ||
<EmptyDetailsView | ||
title="This page is coming soon." | ||
description="Not yet implemented" | ||
imageAlt="coming soon" | ||
/> | ||
} | ||
/> | ||
); | ||
|
||
export default ComingSoonPage; |
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.