chore: init worker selector

This commit is contained in:
jialin
2025-03-25 17:58:01 +08:00
parent f882fe2c32
commit 8f6c1d0e47
7 changed files with 25 additions and 18 deletions
@@ -2,7 +2,11 @@ import React from 'react';
import '../style/title-wrapper.less';
const TitleWrapper: React.FC<any> = ({ children }) => {
return <h3 className="h3">{children}</h3>;
return (
<h3 className="h3" style={{ height: 50 }}>
{children}
</h3>
);
};
export default TitleWrapper;