Bläddra i källkod

Create index.tsx

Stefan Pejcic 1 år sedan
förälder
incheckning
b3068cf125
1 ändrade filer med 12 tillägg och 0 borttagningar
  1. 12 0
      documentation/src/components/install/index.tsx

+ 12 - 0
documentation/src/components/install/index.tsx

@@ -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;