Skip to content

Commit

Permalink
docs: Fix component name
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkasany committed Nov 16, 2022
1 parent 2b5db9a commit 5f0aa91
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion example/src/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@
},
{
"version": "0.0.1",
"name": "TextArea",
"name": "Textarea",
"sort": 1,
"cName": "文本域",
"type": "component",
Expand Down
4 changes: 2 additions & 2 deletions packages/quark/src/popup/doc-react.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ export default () => {
<div onClick={handleOpen}>
Basic Usage
</div>
<PopUp open={open} onClosed={handleClose}>
<Popup open={open} onClosed={handleClose}>
<div>First Line</div>
<div>Second Line</div>
<div>Third Line</div>
<div>Forth Line</div>
<div>Fifth Line</div>
<div>Six Line</div>
</PopUp>
</Popup>
</div>
);
};
Expand Down
4 changes: 2 additions & 2 deletions packages/quark/src/popup/doc-react.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ export default () => {
<div onClick={handleOpen}>
基本使用
</div>
<PopUp open={open} onClosed={handleClose}>
<Popup open={open} onClosed={handleClose}>
<div>第二行</div>
<div>第三行</div>
<div>第四行</div>
<div>第五行</div>
<div>第六行</div>
</PopUp>
</Popup>
</div>
);
};
Expand Down

0 comments on commit 5f0aa91

Please sign in to comment.