We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a131267 commit 6b853e6Copy full SHA for 6b853e6
website/src/component/Preview/Footer.js
@@ -7,14 +7,20 @@ export default function (props) {
7
: `https://github.com/uiwjs/react-native-uiw/edit/master/${path?.replace(/^\//, '')}`;
8
return (
9
<div style={{ paddingBlock: 20 }}>
10
- {path && url && <a href={url} target="_blank" rel="noopener noreferrer" style={{ color: '#333' }}></a>}
+ {path && url && (
11
+ <a href={url} target="_blank" rel="noopener noreferrer" style={{ color: '#333' }}>
12
+ 在Github上编辑本页!
13
+ </a>
14
+ )}
15
<Divider type="vertical" />
16
<a
17
target="_blank"
18
rel="noopener noreferrer"
19
href="https://github.com/uiwjs/react-native-uiw/issues"
20
style={{ color: '#333' }}
- ></a>
21
+ >
22
+ 提交bug
23
24
</div>
25
);
26
}
0 commit comments