Last active
August 26, 2015 17:17
-
-
Save DrBoolean/a843ff47f9d43df54715 to your computer and use it in GitHub Desktop.
Blog post about salesforce design system + react 4
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
| render: function() { | |
| return ( | |
| <div className="slds-notify-container"> | |
| <div className="slds-notify slds-notify--alert" role="alert"> | |
| <span className="slds-assistive-text">info</span> | |
| <button className="slds-button slds-notify__close slds-icon--small"> | |
| <svg aria-hidden="true" className="slds-button__icon slds-button__icon--inverse" dangerouslySetInnerHTML={{__html:'<use xlink:href="/assets/icons/action-sprite/svg/symbols.svg#close"></use>'}}> | |
| </svg> | |
| <span className="slds-assistive-text">Close</span> | |
| </button> | |
| <h2>Base System Alert</h2> | |
| </div> | |
| </div> | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment