30 lines
719 B
HTML
30 lines
719 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Button Test</title>
|
|
</head>
|
|
<body>
|
|
<h1>检查浏览器:</h1>
|
|
<p>请访问: <a href="http://localhost:3003">http://localhost:3003</a></p>
|
|
<p>按钮应该显示 "Invest" 文字</p>
|
|
|
|
<h2>调试步骤:</h2>
|
|
<ol>
|
|
<li>打开浏览器开发者工具 (F12)</li>
|
|
<li>找到 Invest 按钮</li>
|
|
<li>检查元素内是否有 "Invest" 文本</li>
|
|
<li>检查 CSS 样式是否有问题</li>
|
|
</ol>
|
|
|
|
<h2>Button 代码:</h2>
|
|
<pre>
|
|
<Button
|
|
onPress={onInvest}
|
|
className="rounded-xl h-11 w-full text-body-small font-bold bg-gray-900 text-white hover:bg-gray-800"
|
|
>
|
|
Invest
|
|
</Button>
|
|
</pre>
|
|
</body>
|
|
</html>
|