update good rate part

This commit is contained in:
lb
2023-07-01 10:59:38 +08:00
parent 75a41a5713
commit 45c3edcd48
12 changed files with 114 additions and 51 deletions

View File

@@ -0,0 +1,7 @@
import cls from './index.module.less';
const GoodRateChart = (props) => {
return <div className={cls.GoodRateChart}>good rate chart</div>;
};
export default GoodRateChart;

View File

@@ -0,0 +1,7 @@
import cls from './index.module.less';
const TechSplitline = (props) => {
return <div className={cls.techSplitline}></div>;
};
export default TechSplitline;

View File

@@ -0,0 +1,5 @@
.techSplitline {
height: 2px;
width: 100%;
background: radial-gradient(#3ce7ff, #3ce8ff92, #3ce8ff32, transparent);
}

View File

@@ -0,0 +1,7 @@
import cls from './index.module.less';
const TodayTableData = (props) => {
return <div className={cls.todayTableData}>today table data</div>;
};
export default TodayTableData;