Files
HKSingleParty/03_source/mobile/src/pages/DemoFacebookClone/components/ExploreContainer.tsx
louiscklaw 5234ac06cd update,
2025-06-06 12:41:25 +08:00

26 lines
495 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;