Files
Stirling-PDF/client-ionic/src/components/ExploreContainer.tsx

15 lines
402 B
TypeScript
Raw Normal View History

2023-10-23 18:08:28 +03:00
import './ExploreContainer.css';
interface ContainerProps { }
const ExploreContainer: React.FC<ContainerProps> = () => {
return (
<div id="container">
<strong>Ready to create an app?</strong>
<p>Start with Ionic <a target="_blank" rel="noopener noreferrer" href="https://ionicframework.com/docs/components">UI Components</a></p>
</div>
);
};
export default ExploreContainer;