Create index.tsx

This commit is contained in:
Stefan Pejcic 2024-04-23 18:46:45 +02:00 committed by GitHub
parent 2358ed785a
commit b3068cf125
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,12 @@
import React from "react";
const InstallSection: React.FC = () => {
return (
<div>
<h2>Installation Steps</h2>
<p>This is your installation guide...</p>
</div>
);
};
export default InstallSection;