This commit is contained in:
louiscklaw
2025-06-06 12:41:25 +08:00
parent aec59fb328
commit 5234ac06cd
14 changed files with 1387 additions and 25 deletions

View File

@@ -0,0 +1,25 @@
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;