1.1.0 • Published 3 years ago

csv-excel-to-json-mapper v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

csv-excel-to-json-mapper

this package helps map files from excel or csv to a desired json data structure

NPM JavaScript Style Guide

Install

npm install --save csv-excel-to-json-mapper

Usage

import React from 'react'

import { FileToJsonMaper } from 'csv-excel-to-json-mapper'
import 'csv-excel-to-json-mapper/dist/index.css'

const App = () => {
  const keys = [
    { value: "surname", label: "Surname", required: true },
    { value: "otherNames", label: "Other Names", required: true },
    { value: "email", label: "email" },
    { value: "password", label: "Password" },
  ]
  return <FileToJsonMaper keys={keys} onComplete={(data) => console.log(data)} />
}

export default App

License

MIT © LogicalOgbonna