Files
HKSingleParty/03_source/mobile/src/pages/DemoReactLifecycles/components/ExploreContainer.tsx
2025-06-06 22:38:16 +08:00

17 lines
407 B
TypeScript

import './ExploreContainer.css';
interface ContainerProps {
name: string;
}
const ExploreContainer: React.FC<ContainerProps> = ({ name }) => {
return (
<div className="container">
<strong>{name}</strong>
<p>Explore <a target="_blank" rel="noopener noreferrer" href="https://ionicframework.com/docs/components">UI Components</a></p>
</div>
);
};
export default ExploreContainer;