luoyang-screen/src/page/LDPage/Left/index.tsx
2024-11-29 10:34:06 +08:00

11 lines
211 B
TypeScript

import LeftUp from "./LeftUp";
import LeftDown from "./LeftDown";
function Left() {
return (
<div className="group_left flex-col">
<LeftUp />
<LeftDown />
</div>
);
}
export default Left;