mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-15 11:42:57 +08:00
12 lines
389 B
CoffeeScript
12 lines
389 B
CoffeeScript
React = require 'react'
|
|
{Message, Actions, NamespaceStore} = require 'inbox-exports'
|
|
{RetinaImg} = require 'ui-components'
|
|
|
|
module.exports =
|
|
NewComposeButton = React.createClass
|
|
render: ->
|
|
<button style={order: -100} className="btn btn-toolbar" onClick={@_onNewCompose}>
|
|
<RetinaImg name="toolbar-compose.png"/>
|
|
</button>
|
|
|
|
_onNewCompose: -> Actions.composeNewBlankDraft()
|