One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
The following is a quick guide on how to format json data into ndjson and import the resulting data into sanity studio using the sanity cli.
Sanity is a structured content platform that is incredibly fast and flexible.
NDJSON is a convenient format for storing or streaming structured data that may be processed one record at a time.
| function removeDuplicateObjectFromArray(array, key) { | |
| return array.filter((obj, index, self) => | |
| index === self.findIndex((el) => ( | |
| el[key] === obj[key] | |
| )) | |
| ) | |
| } | |
| const data = arr.reduce((filter, current) => { | |
| const dk = filter.find(item => item.value === current.value); |
| import React, { useState, useCallback } from 'react'; | |
| import { | |
| Button, | |
| Flex, | |
| Dialog, | |
| Grid, | |
| Card, | |
| Text, | |
| Box, | |
| TextInput |