-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2536 from bcgov/feature/DESENG-636-add-enagement-…
…new-look-route [To Main] Feature - DESENG-636 - Add new engagement view page
- Loading branch information
Showing
8 changed files
with
84 additions
and
6 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,52 @@ | ||
import { BodyText, Header1 } from 'components/common/Typography'; | ||
import React from 'react'; | ||
import { useParams } from 'react-router-dom'; | ||
import { Link } from 'components/common/Input'; | ||
|
||
export const ViewEngagement = () => { | ||
const { slug, language } = useParams(); | ||
const oldLink = `/${slug}/${language}`; | ||
return ( | ||
<> | ||
<header> | ||
<Header1>View Engagement "{slug}"</Header1> | ||
</header> | ||
<main> | ||
<BodyText>The new engagement view will be displayed here once work is completed. </BodyText> | ||
<BodyText> | ||
For now, please use the <Link to={oldLink}>old view</Link>. | ||
</BodyText> | ||
<BodyText>Work to be completed: </BodyText> | ||
<ul> | ||
<li> | ||
<Link to="https://apps.itsm.gov.bc.ca/jira/browse/DESENG-636"> | ||
<s>Create new engagement view page</s> | ||
</Link> | ||
</li> | ||
<li> | ||
<Link to="https://apps.itsm.gov.bc.ca/jira/browse/DESENG-630"> | ||
Add new header section to the new engagement view | ||
</Link> | ||
</li> | ||
<li> | ||
<Link to="https://apps.itsm.gov.bc.ca/jira/browse/DESENG-631"> | ||
Add new Engagement description section | ||
</Link> | ||
</li> | ||
<li> | ||
<Link to="https://apps.itsm.gov.bc.ca/jira/browse/DESENG-632"> | ||
Add new Dynamic pages section | ||
</Link> | ||
</li> | ||
<li> | ||
<Link to="https://apps.itsm.gov.bc.ca/jira/browse/DESENG-633"> | ||
Add new Survey block section | ||
</Link> | ||
</li> | ||
</ul> | ||
</main> | ||
</> | ||
); | ||
}; | ||
|
||
export default ViewEngagement; |
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