-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(mrf): workflow email UI cleanup (#7215)
* fix: mrf workflow email UI cleanup * chore: update button formatting * fix: more fixes * chore: change port for react-email-preview to 4242 * chore: add comment on email defaults * fix: potentially unsafe external url
- Loading branch information
Showing
15 changed files
with
8,235 additions
and
350 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
# React Email Preview | ||
|
||
A live preview right in your browser so you don't need to keep sending real emails during development. | ||
|
||
## Getting Started | ||
|
||
First, install the dependencies: | ||
|
||
```sh | ||
npm install | ||
# or | ||
yarn | ||
``` | ||
|
||
Then, run the development server: | ||
|
||
```sh | ||
npm run dev | ||
# or | ||
yarn dev | ||
``` | ||
|
||
Open [localhost:4242](http://localhost:4242) with your browser to see the result. | ||
|
||
## License | ||
|
||
MIT License |
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,3 @@ | ||
import { MrfWorkflowEmail } from '../../src/app/views/templates/MrfWorkflowEmail' | ||
|
||
export default MrfWorkflowEmail |
Oops, something went wrong.