Getting Started

Survey Editor for generating akvo-react form survey definition

Install

Using NPM

npm install --save akvo-react-form-editor

Using Yarn

yarn add akvo-react-form-editor

Usage

import React from 'react'
import 'akvo-react-form-editor/dist/index.css' /* REQUIRED */
import WebformEditor from 'akvo-react-form-editor'

class Example extends Component {
  render() {
    return <WebformEditor />
  }
}