Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Commit

Permalink
Create App5.js
Browse files Browse the repository at this point in the history
  • Loading branch information
veridelisi authored Nov 18, 2022
1 parent 2c8389d commit 878dd96
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions App5.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from "react";
import Explorer from "./Explorer";
import Data from "./Data";

export default function App5() {

const Veriler = Data.map((index) => {
return <Explorer index={index}/>;
});


return <>{Veriler}</>;
}

0 comments on commit 878dd96

Please sign in to comment.