Menu Close
In fact, it has the 39mm Oystersteel monobloc middle-case of the OP essentially, which appears a little more curvaceous than the flat, trapezoid profile of the 40mm Oystersteel Submariner. The bezel of the replica rolex watches Explorer I is different on each: The OP has a domed, high-polish bezel, while the Explorer I has what Rolex calls a "Smooth" bezel. It has a flat surface instead of the convex bezel of the OP, with nicely polished.

react-import-csv

react-import-csv

imp pkg

import React, { useState } from "react";
import Papa from "papaparse";

create state for ster and geter

const [csvData, setCsvData] = useState([]);

crete handle change

const handleFileChange = (e) => { // jika ok Papa.parse(e.target.files[0], { header: true, complete: (results) => { setCsvData(results.data); }, }); };

and render

( <div> <input type="file" onChange={handleFileChange} /> <table> <thead> <tr> <th>Nama</th> <th>Alamat</th> <th>Telepon</th> </tr> </thead> <tbody> {csvData.map((row) => ( <tr key={row.nama}> <td>{row.nama}</td> <td>{row.alamat}</td> <td>{row.telepon}</td> </tr> ))} </tbody> </table> </div> )````;
View Source Code