This file contains hidden or 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
| import React from 'react' | |
| import ReactDOM from 'react-dom' | |
| class Hello extends React.Component { | |
| render () { | |
| return <div className='message-box'> | |
| Hello {this.props.name} | |
| </div> | |
| } | |
| } |
This file contains hidden or 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
| <!-- Fixes <sup> from becoming too small in Outlook --> | |
| <span style="font-size: 70%; line-height: 0; vertical-align: 3px">®</span> | |
| <!-- Force words to stick together --> | |
| <span style="white-space: nowrap;">Don't wrap this text</span> | |
| <!-- Remove blue border from images links --> | |
| <a href="#" target="_blank" border="0" style="border:none;"> <img src="image.png" alt="alt-text" width="245" border="0" style="border:none;"></a> | |
| <!-- Spacer --> |
NewerOlder