1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-14 02:06:29 +00:00

行動データ, contact form, default articleに英語文追加, Intro fix

This commit is contained in:
Rokt33r
2015-11-09 15:07:17 +09:00
parent 8428588a4c
commit 746df9277c
12 changed files with 356 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
import React from 'react'
import React, { PropTypes } from 'react'
import MarkdownPreview from 'boost/components/MarkdownPreview'
import CodeEditor from 'boost/components/CodeEditor'
@@ -88,8 +88,11 @@ export default class Tutorial extends React.Component {
return (<div className='slide slide3'>
<div className='title'>Easy to access with Finder</div>
<div className='content'>
Finder is a small popup window.<br/>
With finder, You can search your articles faster.<br/>
With Finder, You can search your articles faster.<br/>
You can open Finder by pressing Control + shift + tab<br/>
To put the content of an article in the clipboard, press Enter.<br/>
So you can paste it with Cmd() + V
<img width='480' src='../../resources/finder.png'/>
</div>
</div>)
@@ -105,3 +108,7 @@ export default class Tutorial extends React.Component {
}
}
}
Tutorial.propTypes = {
close: PropTypes.func
}