New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@iarani/opendata

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@iarani/opendata

Opendata components to connect your opendata backend to your React applications

latest
Source
npmnpm
Version
1.0.15
Version published
Maintainers
1
Created
Source

opendata-packages

Usage/Examples

Using in Next.js

First, import dynamically

import dynamic from "next/dynamic";

const FormSSRWrapper = dynamic(import("@iarani/opendata"), {
  ssr: false,
  loading: () => <p>Loading ...</p>,
});

Then, display your form

function opendatatest() {
    return(
        <FormSSRWrapper
          form={form} // pass the form name here
          values={post} // use this when updating a record
          title={" "} // use this when want to use a custom name for your form
        />
    )
}

Keywords

Low

FAQs

Package last updated on 22 Sep 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts