24 lines
497 B
TypeScript
24 lines
497 B
TypeScript
import './ExploreContainer.scss';
|
|
|
|
interface ContainerProps {}
|
|
|
|
const ExploreContainer: React.FC<ContainerProps> = () => {
|
|
return (
|
|
<div className="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;
|