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

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;