This commit is contained in:
2026-08-29 16:20:33 +08:00
commit cba31428dc
52 changed files with 6553 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
/**
* 占位 tab 组件(迭代 02 设置 tab 化扩展)
* 交易记录 / 关注列表 当前为空占位,功能后续迭代实现
*/
export function PlaceholderTab({ title }) {
return (
<div style={{ padding: 40, textAlign: 'center', fontFamily: 'system-ui', color: '#999' }}>
<div style={{ fontSize: 16, marginBottom: 8 }}>{title}</div>
<div style={{ fontSize: 13 }}>功能开发中敬请期待</div>
</div>
);
}