@@ -0,0 +1,7 @@
+import React, { FC } from "react";
+
+const Home: FC = () => {
+ return <h1>Pagina Inicio</h1>;
+};
+export default Home;