1.0.3 • Published 3 years ago

felstorm-nexus v1.0.3

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

npm-felstorm-nexus

A package to help develop a Felstorm Nexus for guides.

How to use

Setup a new Create React App project, and install this package with

  • npm install felstorm-nexus.

Then your src/index must be configured as:

import React from 'react'
import ReactDOM from 'react-dom'
import { FelstormNexus } from 'felstorm-nexus'

import MyAppName from './MyAppName'
import myFormSchema from './myFormSchema.json'

ReactDOM.render(
  <React.StrictMode>
    <FelstormNexus
      developerTools={true}
      formSchema={myFormSchema}
      useProvidedForm={true}
      Component={MyAppName}
    />
  </React.StrictMode>,
  document.getElementById('root')
);

Happy Building ♡