mirror of
https://github.com/RealKai42/qwerty-learner.git
synced 2026-04-05 14:29:04 +08:00
docs(README): change new Screenshot
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
</p>
|
||||
|
||||
<div align=center>
|
||||
<img src="https://github.com/Kaiyiwing/qwerty-learner/blob/master/docs/Screenshot.png"/>
|
||||
<img src="docs/Screenshot.png"/>
|
||||
</div>
|
||||
|
||||
## 📸 在线访问
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 279 KiB |
@@ -179,7 +179,8 @@ const App: React.FC = () => {
|
||||
<div>
|
||||
<Word
|
||||
key={`word-${wordList.words[order].name}-${order}`}
|
||||
word={wordList.words[order].name}
|
||||
// word={wordList.words[order].name}
|
||||
word={'melatonin'}
|
||||
onFinish={onFinish}
|
||||
isStart={isStart}
|
||||
wordVisible={switcherState.wordVisible}
|
||||
@@ -187,7 +188,8 @@ const App: React.FC = () => {
|
||||
{switcherState.phonetic && (wordList.words[order].usphone || wordList.words[order].ukphone) && (
|
||||
<Phonetic usphone={wordList.words[order].usphone} ukphone={wordList.words[order].ukphone} />
|
||||
)}
|
||||
<Translation key={`trans-${wordList.words[order].name}`} trans={wordList.words[order].trans.join(';')} />
|
||||
{/* <Translation key={`trans-${wordList.words[order].name}`} trans={wordList.words[order].trans.join(';')} /> */}
|
||||
<Translation key={`trans-${wordList.words[order].name}`} trans={'褪黑激素'} />
|
||||
</div>
|
||||
<Speed correctCount={correctCount} inputCount={inputCount} isStart={isStart} />
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user