Last active
March 18, 2017 06:52
-
-
Save albertorestifo/5b343cdf5c9829725d6891caa756718a to your computer and use it in GitHub Desktop.
React Email app
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
@sentis/emails | |
├── index.js | |
└── src/ | |
├── App.js | |
├── elements/ | |
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
const email = require('@sentisis/emails'); | |
// Some time later | |
const html = email.generate({ | |
// In the future we'll expand the email app to support | |
// many different layouts | |
type: 'alert', | |
// The data will be used to populate the Redux store | |
data: { /* ... */ }, | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment