zhuzhou-screen-new/src/page/HomePage/Component/Rectangle2/index.tsx
2025-07-18 17:46:31 +08:00

17 lines
357 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import "./index.css";
interface Props {
name: string;
value: string;
}
function Rectangle2(props: Props) {
return (
<div className="rectangle2">
<div>
<span className="rectangle2_title">{props.name}</span>
<span className="rectangle2_content">{props.value}</span>
</div>
</div>
);
}
export default Rectangle2;