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

Commit

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

export default function App() {

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

return <>{Veriler}</>;
}

0 comments on commit 7b980e1

Please sign in to comment.