1-1对接接口

This commit is contained in:
2024-09-12 16:14:54 +08:00
parent 0dcff0c256
commit d142b16df3
41 changed files with 2208 additions and 249 deletions

View File

@@ -0,0 +1,12 @@
import RightDown from "./RightDown";
import RightUp from "./RightUp";
function Right() {
return (
<div className="group_right flex-col">
<RightUp />
<RightDown />
</div>
);
}
export default Right;