From b3068cf1255c89cc527e793f9deca2baa30e2f92 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Tue, 23 Apr 2024 18:46:45 +0200 Subject: [PATCH] Create index.tsx --- documentation/src/components/install/index.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 documentation/src/components/install/index.tsx diff --git a/documentation/src/components/install/index.tsx b/documentation/src/components/install/index.tsx new file mode 100644 index 00000000..1c0cadf1 --- /dev/null +++ b/documentation/src/components/install/index.tsx @@ -0,0 +1,12 @@ +import React from "react"; + +const InstallSection: React.FC = () => { + return ( +
+

Installation Steps

+

This is your installation guide...

+
+ ); +}; + +export default InstallSection;