feat(componentMarket): 添加组件详情页面
- 在 compCard 组件中添加点击跳转到组件详情页面的功能 - 新增 compDetails.tsx 文件实现组件详情页面 - 在路由配置中添加组件详情页面的路由 - 更新多语言文件,添加组件详情页面的翻译master
parent
de378e3977
commit
6933f82ec0
@ -0,0 +1,11 @@
|
||||
import React from 'react';
|
||||
|
||||
const CompDetails = () => {
|
||||
return (
|
||||
<div className="comp-details">
|
||||
组件详情
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default CompDetails;
|
||||
Loading…
Reference in New Issue