chore: drawer ux

This commit is contained in:
jialin
2024-08-09 10:26:46 +08:00
parent 8490e32ef1
commit 77f38394e6
22 changed files with 547 additions and 150 deletions
@@ -0,0 +1,12 @@
import React from 'react';
import '../style/title-wrapper.less';
const TitleWrapper: React.FC<any> = ({ children }) => {
return (
<h3 className="h3">
<span>{children}</span>
</h3>
);
};
export default TitleWrapper;